Documentation ¶
Index ¶
- Variables
- func CacheExpires(r *http.Response) time.Time
- func IsNil(i interface{}) bool
- func PtrBool(v bool) *bool
- func PtrFloat32(v float32) *float32
- func PtrFloat64(v float64) *float64
- func PtrInt(v int) *int
- func PtrInt32(v int32) *int32
- func PtrInt64(v int64) *int64
- func PtrString(v string) *string
- func PtrTime(v time.Time) *time.Time
- type APIClient
- type APIKey
- type APIResponse
- type Address
- func (o *Address) GetAddressId() string
- func (o *Address) GetAddressIdOk() (*string, bool)
- func (o *Address) GetIndex() int32
- func (o *Address) GetIndexOk() (*int32, bool)
- func (o *Address) GetNetworkId() string
- func (o *Address) GetNetworkIdOk() (*string, bool)
- func (o *Address) GetPublicKey() string
- func (o *Address) GetPublicKeyOk() (*string, bool)
- func (o *Address) GetWalletId() string
- func (o *Address) GetWalletIdOk() (*string, bool)
- func (o Address) MarshalJSON() ([]byte, error)
- func (o *Address) SetAddressId(v string)
- func (o *Address) SetIndex(v int32)
- func (o *Address) SetNetworkId(v string)
- func (o *Address) SetPublicKey(v string)
- func (o *Address) SetWalletId(v string)
- func (o Address) ToMap() (map[string]interface{}, error)
- func (o *Address) UnmarshalJSON(data []byte) (err error)
- type AddressBalanceList
- func (o *AddressBalanceList) GetData() []Balance
- func (o *AddressBalanceList) GetDataOk() ([]Balance, bool)
- func (o *AddressBalanceList) GetHasMore() bool
- func (o *AddressBalanceList) GetHasMoreOk() (*bool, bool)
- func (o *AddressBalanceList) GetNextPage() string
- func (o *AddressBalanceList) GetNextPageOk() (*string, bool)
- func (o *AddressBalanceList) GetTotalCount() int32
- func (o *AddressBalanceList) GetTotalCountOk() (*int32, bool)
- func (o AddressBalanceList) MarshalJSON() ([]byte, error)
- func (o *AddressBalanceList) SetData(v []Balance)
- func (o *AddressBalanceList) SetHasMore(v bool)
- func (o *AddressBalanceList) SetNextPage(v string)
- func (o *AddressBalanceList) SetTotalCount(v int32)
- func (o AddressBalanceList) ToMap() (map[string]interface{}, error)
- func (o *AddressBalanceList) UnmarshalJSON(data []byte) (err error)
- type AddressHistoricalBalanceList
- func (o *AddressHistoricalBalanceList) GetData() []HistoricalBalance
- func (o *AddressHistoricalBalanceList) GetDataOk() ([]HistoricalBalance, bool)
- func (o *AddressHistoricalBalanceList) GetHasMore() bool
- func (o *AddressHistoricalBalanceList) GetHasMoreOk() (*bool, bool)
- func (o *AddressHistoricalBalanceList) GetNextPage() string
- func (o *AddressHistoricalBalanceList) GetNextPageOk() (*string, bool)
- func (o AddressHistoricalBalanceList) MarshalJSON() ([]byte, error)
- func (o *AddressHistoricalBalanceList) SetData(v []HistoricalBalance)
- func (o *AddressHistoricalBalanceList) SetHasMore(v bool)
- func (o *AddressHistoricalBalanceList) SetNextPage(v string)
- func (o AddressHistoricalBalanceList) ToMap() (map[string]interface{}, error)
- func (o *AddressHistoricalBalanceList) UnmarshalJSON(data []byte) (err error)
- type AddressList
- func (o *AddressList) GetData() []Address
- func (o *AddressList) GetDataOk() ([]Address, bool)
- func (o *AddressList) GetHasMore() bool
- func (o *AddressList) GetHasMoreOk() (*bool, bool)
- func (o *AddressList) GetNextPage() string
- func (o *AddressList) GetNextPageOk() (*string, bool)
- func (o *AddressList) GetTotalCount() int32
- func (o *AddressList) GetTotalCountOk() (*int32, bool)
- func (o AddressList) MarshalJSON() ([]byte, error)
- func (o *AddressList) SetData(v []Address)
- func (o *AddressList) SetHasMore(v bool)
- func (o *AddressList) SetNextPage(v string)
- func (o *AddressList) SetTotalCount(v int32)
- func (o AddressList) ToMap() (map[string]interface{}, error)
- func (o *AddressList) UnmarshalJSON(data []byte) (err error)
- type AddressTransactionList
- func (o *AddressTransactionList) GetData() []Transaction
- func (o *AddressTransactionList) GetDataOk() ([]Transaction, bool)
- func (o *AddressTransactionList) GetHasMore() bool
- func (o *AddressTransactionList) GetHasMoreOk() (*bool, bool)
- func (o *AddressTransactionList) GetNextPage() string
- func (o *AddressTransactionList) GetNextPageOk() (*string, bool)
- func (o AddressTransactionList) MarshalJSON() ([]byte, error)
- func (o *AddressTransactionList) SetData(v []Transaction)
- func (o *AddressTransactionList) SetHasMore(v bool)
- func (o *AddressTransactionList) SetNextPage(v string)
- func (o AddressTransactionList) ToMap() (map[string]interface{}, error)
- func (o *AddressTransactionList) UnmarshalJSON(data []byte) (err error)
- type AddressesAPI
- type AddressesAPIService
- func (a *AddressesAPIService) CreateAddress(ctx context.Context, walletId string) ApiCreateAddressRequest
- func (a *AddressesAPIService) CreateAddressExecute(r ApiCreateAddressRequest) (*Address, *http.Response, error)
- func (a *AddressesAPIService) CreatePayloadSignature(ctx context.Context, walletId string, addressId string) ApiCreatePayloadSignatureRequest
- func (a *AddressesAPIService) CreatePayloadSignatureExecute(r ApiCreatePayloadSignatureRequest) (*PayloadSignature, *http.Response, error)
- func (a *AddressesAPIService) GetAddress(ctx context.Context, walletId string, addressId string) ApiGetAddressRequest
- func (a *AddressesAPIService) GetAddressBalance(ctx context.Context, walletId string, addressId string, assetId string) ApiGetAddressBalanceRequest
- func (a *AddressesAPIService) GetAddressBalanceExecute(r ApiGetAddressBalanceRequest) (*Balance, *http.Response, error)
- func (a *AddressesAPIService) GetAddressExecute(r ApiGetAddressRequest) (*Address, *http.Response, error)
- func (a *AddressesAPIService) GetPayloadSignature(ctx context.Context, walletId string, addressId string, ...) ApiGetPayloadSignatureRequest
- func (a *AddressesAPIService) GetPayloadSignatureExecute(r ApiGetPayloadSignatureRequest) (*PayloadSignature, *http.Response, error)
- func (a *AddressesAPIService) ListAddressBalances(ctx context.Context, walletId string, addressId string) ApiListAddressBalancesRequest
- func (a *AddressesAPIService) ListAddressBalancesExecute(r ApiListAddressBalancesRequest) (*AddressBalanceList, *http.Response, error)
- func (a *AddressesAPIService) ListAddresses(ctx context.Context, walletId string) ApiListAddressesRequest
- func (a *AddressesAPIService) ListAddressesExecute(r ApiListAddressesRequest) (*AddressList, *http.Response, error)
- func (a *AddressesAPIService) ListPayloadSignatures(ctx context.Context, walletId string, addressId string) ApiListPayloadSignaturesRequest
- func (a *AddressesAPIService) ListPayloadSignaturesExecute(r ApiListPayloadSignaturesRequest) (*PayloadSignatureList, *http.Response, error)
- func (a *AddressesAPIService) RequestFaucetFunds(ctx context.Context, walletId string, addressId string) ApiRequestFaucetFundsRequest
- func (a *AddressesAPIService) RequestFaucetFundsExecute(r ApiRequestFaucetFundsRequest) (*FaucetTransaction, *http.Response, error)
- type ApiBroadcastContractInvocationRequest
- type ApiBroadcastStakingOperationRequest
- type ApiBroadcastTradeRequest
- type ApiBroadcastTransferRequest
- type ApiBuildStakingOperationRequest
- type ApiCreateAddressRequest
- type ApiCreateContractInvocationRequest
- type ApiCreatePayloadSignatureRequest
- type ApiCreateServerSignerRequest
- type ApiCreateSmartContractRequest
- type ApiCreateStakingOperationRequest
- type ApiCreateTradeRequest
- type ApiCreateTransferRequest
- type ApiCreateWalletRequest
- type ApiCreateWebhookRequest
- type ApiDeleteWebhookRequest
- type ApiDeploySmartContractRequest
- type ApiFetchHistoricalStakingBalancesRequest
- func (r ApiFetchHistoricalStakingBalancesRequest) AssetId(assetId string) ApiFetchHistoricalStakingBalancesRequest
- func (r ApiFetchHistoricalStakingBalancesRequest) EndTime(endTime time.Time) ApiFetchHistoricalStakingBalancesRequest
- func (r ApiFetchHistoricalStakingBalancesRequest) Execute() (*FetchHistoricalStakingBalances200Response, *http.Response, error)
- func (r ApiFetchHistoricalStakingBalancesRequest) Limit(limit int32) ApiFetchHistoricalStakingBalancesRequest
- func (r ApiFetchHistoricalStakingBalancesRequest) Page(page string) ApiFetchHistoricalStakingBalancesRequest
- func (r ApiFetchHistoricalStakingBalancesRequest) StartTime(startTime time.Time) ApiFetchHistoricalStakingBalancesRequest
- type ApiFetchStakingRewardsRequest
- func (r ApiFetchStakingRewardsRequest) Execute() (*FetchStakingRewards200Response, *http.Response, error)
- func (r ApiFetchStakingRewardsRequest) FetchStakingRewardsRequest(fetchStakingRewardsRequest FetchStakingRewardsRequest) ApiFetchStakingRewardsRequest
- func (r ApiFetchStakingRewardsRequest) Limit(limit int32) ApiFetchStakingRewardsRequest
- func (r ApiFetchStakingRewardsRequest) Page(page string) ApiFetchStakingRewardsRequest
- type ApiGetAddressBalanceRequest
- type ApiGetAddressRequest
- type ApiGetAssetRequest
- type ApiGetContractInvocationRequest
- type ApiGetCurrentUserRequest
- type ApiGetExternalAddressBalanceRequest
- type ApiGetExternalStakingOperationRequest
- type ApiGetNetworkRequest
- type ApiGetPayloadSignatureRequest
- type ApiGetServerSignerRequest
- type ApiGetSmartContractRequest
- type ApiGetStakingContextRequest
- type ApiGetStakingOperationRequest
- type ApiGetTradeRequest
- type ApiGetTransferRequest
- type ApiGetValidatorRequest
- type ApiGetWalletBalanceRequest
- type ApiGetWalletRequest
- type ApiListAddressBalancesRequest
- type ApiListAddressHistoricalBalanceRequest
- func (r ApiListAddressHistoricalBalanceRequest) Execute() (*AddressHistoricalBalanceList, *http.Response, error)
- func (r ApiListAddressHistoricalBalanceRequest) Limit(limit int32) ApiListAddressHistoricalBalanceRequest
- func (r ApiListAddressHistoricalBalanceRequest) Page(page string) ApiListAddressHistoricalBalanceRequest
- type ApiListAddressTransactionsRequest
- type ApiListAddressesRequest
- type ApiListContractEventsRequest
- func (r ApiListContractEventsRequest) ContractName(contractName string) ApiListContractEventsRequest
- func (r ApiListContractEventsRequest) EventName(eventName string) ApiListContractEventsRequest
- func (r ApiListContractEventsRequest) Execute() (*ContractEventList, *http.Response, error)
- func (r ApiListContractEventsRequest) FromBlockHeight(fromBlockHeight int32) ApiListContractEventsRequest
- func (r ApiListContractEventsRequest) NextPage(nextPage string) ApiListContractEventsRequest
- func (r ApiListContractEventsRequest) ProtocolName(protocolName string) ApiListContractEventsRequest
- func (r ApiListContractEventsRequest) ToBlockHeight(toBlockHeight int32) ApiListContractEventsRequest
- type ApiListContractInvocationsRequest
- type ApiListExternalAddressBalancesRequest
- type ApiListPayloadSignaturesRequest
- type ApiListServerSignerEventsRequest
- type ApiListServerSignersRequest
- type ApiListSmartContractsRequest
- type ApiListTradesRequest
- type ApiListTransfersRequest
- type ApiListValidatorsRequest
- func (r ApiListValidatorsRequest) Execute() (*ValidatorList, *http.Response, error)
- func (r ApiListValidatorsRequest) Limit(limit int32) ApiListValidatorsRequest
- func (r ApiListValidatorsRequest) Page(page string) ApiListValidatorsRequest
- func (r ApiListValidatorsRequest) Status(status ValidatorStatus) ApiListValidatorsRequest
- type ApiListWalletBalancesRequest
- type ApiListWalletsRequest
- type ApiListWebhooksRequest
- type ApiRequestExternalFaucetFundsRequest
- type ApiRequestFaucetFundsRequest
- type ApiSubmitServerSignerSeedEventResultRequest
- type ApiSubmitServerSignerSignatureEventResultRequest
- func (r ApiSubmitServerSignerSignatureEventResultRequest) Execute() (*SignatureCreationEventResult, *http.Response, error)
- func (r ApiSubmitServerSignerSignatureEventResultRequest) SignatureCreationEventResult(signatureCreationEventResult SignatureCreationEventResult) ApiSubmitServerSignerSignatureEventResultRequest
- type ApiUpdateWebhookRequest
- type Asset
- func (o *Asset) GetAssetId() string
- func (o *Asset) GetAssetIdOk() (*string, bool)
- func (o *Asset) GetContractAddress() string
- func (o *Asset) GetContractAddressOk() (*string, bool)
- func (o *Asset) GetDecimals() int32
- func (o *Asset) GetDecimalsOk() (*int32, bool)
- func (o *Asset) GetNetworkId() string
- func (o *Asset) GetNetworkIdOk() (*string, bool)
- func (o *Asset) HasContractAddress() bool
- func (o *Asset) HasDecimals() bool
- func (o Asset) MarshalJSON() ([]byte, error)
- func (o *Asset) SetAssetId(v string)
- func (o *Asset) SetContractAddress(v string)
- func (o *Asset) SetDecimals(v int32)
- func (o *Asset) SetNetworkId(v string)
- func (o Asset) ToMap() (map[string]interface{}, error)
- func (o *Asset) UnmarshalJSON(data []byte) (err error)
- type AssetsAPI
- type AssetsAPIService
- type Balance
- func (o *Balance) GetAmount() string
- func (o *Balance) GetAmountOk() (*string, bool)
- func (o *Balance) GetAsset() Asset
- func (o *Balance) GetAssetOk() (*Asset, bool)
- func (o Balance) MarshalJSON() ([]byte, error)
- func (o *Balance) SetAmount(v string)
- func (o *Balance) SetAsset(v Asset)
- func (o Balance) ToMap() (map[string]interface{}, error)
- func (o *Balance) UnmarshalJSON(data []byte) (err error)
- type BalanceHistoryAPI
- type BalanceHistoryAPIService
- func (a *BalanceHistoryAPIService) ListAddressHistoricalBalance(ctx context.Context, networkId string, addressId string, assetId string) ApiListAddressHistoricalBalanceRequest
- func (a *BalanceHistoryAPIService) ListAddressHistoricalBalanceExecute(r ApiListAddressHistoricalBalanceRequest) (*AddressHistoricalBalanceList, *http.Response, error)
- type BasicAuth
- type BroadcastContractInvocationRequest
- func (o *BroadcastContractInvocationRequest) GetSignedPayload() string
- func (o *BroadcastContractInvocationRequest) GetSignedPayloadOk() (*string, bool)
- func (o BroadcastContractInvocationRequest) MarshalJSON() ([]byte, error)
- func (o *BroadcastContractInvocationRequest) SetSignedPayload(v string)
- func (o BroadcastContractInvocationRequest) ToMap() (map[string]interface{}, error)
- func (o *BroadcastContractInvocationRequest) UnmarshalJSON(data []byte) (err error)
- type BroadcastStakingOperationRequest
- func (o *BroadcastStakingOperationRequest) GetSignedPayload() string
- func (o *BroadcastStakingOperationRequest) GetSignedPayloadOk() (*string, bool)
- func (o *BroadcastStakingOperationRequest) GetTransactionIndex() int32
- func (o *BroadcastStakingOperationRequest) GetTransactionIndexOk() (*int32, bool)
- func (o BroadcastStakingOperationRequest) MarshalJSON() ([]byte, error)
- func (o *BroadcastStakingOperationRequest) SetSignedPayload(v string)
- func (o *BroadcastStakingOperationRequest) SetTransactionIndex(v int32)
- func (o BroadcastStakingOperationRequest) ToMap() (map[string]interface{}, error)
- func (o *BroadcastStakingOperationRequest) UnmarshalJSON(data []byte) (err error)
- type BroadcastTradeRequest
- func (o *BroadcastTradeRequest) GetApproveTransactionSignedPayload() string
- func (o *BroadcastTradeRequest) GetApproveTransactionSignedPayloadOk() (*string, bool)
- func (o *BroadcastTradeRequest) GetSignedPayload() string
- func (o *BroadcastTradeRequest) GetSignedPayloadOk() (*string, bool)
- func (o *BroadcastTradeRequest) HasApproveTransactionSignedPayload() bool
- func (o BroadcastTradeRequest) MarshalJSON() ([]byte, error)
- func (o *BroadcastTradeRequest) SetApproveTransactionSignedPayload(v string)
- func (o *BroadcastTradeRequest) SetSignedPayload(v string)
- func (o BroadcastTradeRequest) ToMap() (map[string]interface{}, error)
- func (o *BroadcastTradeRequest) UnmarshalJSON(data []byte) (err error)
- type BroadcastTransferRequest
- func (o *BroadcastTransferRequest) GetSignedPayload() string
- func (o *BroadcastTransferRequest) GetSignedPayloadOk() (*string, bool)
- func (o BroadcastTransferRequest) MarshalJSON() ([]byte, error)
- func (o *BroadcastTransferRequest) SetSignedPayload(v string)
- func (o BroadcastTransferRequest) ToMap() (map[string]interface{}, error)
- func (o *BroadcastTransferRequest) UnmarshalJSON(data []byte) (err error)
- type BuildStakingOperationRequest
- func (o *BuildStakingOperationRequest) GetAction() string
- func (o *BuildStakingOperationRequest) GetActionOk() (*string, bool)
- func (o *BuildStakingOperationRequest) GetAddressId() string
- func (o *BuildStakingOperationRequest) GetAddressIdOk() (*string, bool)
- func (o *BuildStakingOperationRequest) GetAssetId() string
- func (o *BuildStakingOperationRequest) GetAssetIdOk() (*string, bool)
- func (o *BuildStakingOperationRequest) GetNetworkId() string
- func (o *BuildStakingOperationRequest) GetNetworkIdOk() (*string, bool)
- func (o *BuildStakingOperationRequest) GetOptions() map[string]string
- func (o *BuildStakingOperationRequest) GetOptionsOk() (*map[string]string, bool)
- func (o BuildStakingOperationRequest) MarshalJSON() ([]byte, error)
- func (o *BuildStakingOperationRequest) SetAction(v string)
- func (o *BuildStakingOperationRequest) SetAddressId(v string)
- func (o *BuildStakingOperationRequest) SetAssetId(v string)
- func (o *BuildStakingOperationRequest) SetNetworkId(v string)
- func (o *BuildStakingOperationRequest) SetOptions(v map[string]string)
- func (o BuildStakingOperationRequest) ToMap() (map[string]interface{}, error)
- func (o *BuildStakingOperationRequest) UnmarshalJSON(data []byte) (err error)
- type Configuration
- type ContractEvent
- func (o *ContractEvent) GetBlockHeight() int32
- func (o *ContractEvent) GetBlockHeightOk() (*int32, bool)
- func (o *ContractEvent) GetBlockTime() time.Time
- func (o *ContractEvent) GetBlockTimeOk() (*time.Time, bool)
- func (o *ContractEvent) GetContractAddress() string
- func (o *ContractEvent) GetContractAddressOk() (*string, bool)
- func (o *ContractEvent) GetContractName() string
- func (o *ContractEvent) GetContractNameOk() (*string, bool)
- func (o *ContractEvent) GetData() string
- func (o *ContractEvent) GetDataOk() (*string, bool)
- func (o *ContractEvent) GetEventIndex() int32
- func (o *ContractEvent) GetEventIndexOk() (*int32, bool)
- func (o *ContractEvent) GetEventName() string
- func (o *ContractEvent) GetEventNameOk() (*string, bool)
- func (o *ContractEvent) GetFourBytes() string
- func (o *ContractEvent) GetFourBytesOk() (*string, bool)
- func (o *ContractEvent) GetNetworkId() string
- func (o *ContractEvent) GetNetworkIdOk() (*string, bool)
- func (o *ContractEvent) GetProtocolName() string
- func (o *ContractEvent) GetProtocolNameOk() (*string, bool)
- func (o *ContractEvent) GetSig() string
- func (o *ContractEvent) GetSigOk() (*string, bool)
- func (o *ContractEvent) GetTxHash() string
- func (o *ContractEvent) GetTxHashOk() (*string, bool)
- func (o *ContractEvent) GetTxIndex() int32
- func (o *ContractEvent) GetTxIndexOk() (*int32, bool)
- func (o ContractEvent) MarshalJSON() ([]byte, error)
- func (o *ContractEvent) SetBlockHeight(v int32)
- func (o *ContractEvent) SetBlockTime(v time.Time)
- func (o *ContractEvent) SetContractAddress(v string)
- func (o *ContractEvent) SetContractName(v string)
- func (o *ContractEvent) SetData(v string)
- func (o *ContractEvent) SetEventIndex(v int32)
- func (o *ContractEvent) SetEventName(v string)
- func (o *ContractEvent) SetFourBytes(v string)
- func (o *ContractEvent) SetNetworkId(v string)
- func (o *ContractEvent) SetProtocolName(v string)
- func (o *ContractEvent) SetSig(v string)
- func (o *ContractEvent) SetTxHash(v string)
- func (o *ContractEvent) SetTxIndex(v int32)
- func (o ContractEvent) ToMap() (map[string]interface{}, error)
- func (o *ContractEvent) UnmarshalJSON(data []byte) (err error)
- type ContractEventList
- func (o *ContractEventList) GetData() []ContractEvent
- func (o *ContractEventList) GetDataOk() ([]ContractEvent, bool)
- func (o *ContractEventList) GetHasMore() bool
- func (o *ContractEventList) GetHasMoreOk() (*bool, bool)
- func (o *ContractEventList) GetNextPage() string
- func (o *ContractEventList) GetNextPageOk() (*string, bool)
- func (o ContractEventList) MarshalJSON() ([]byte, error)
- func (o *ContractEventList) SetData(v []ContractEvent)
- func (o *ContractEventList) SetHasMore(v bool)
- func (o *ContractEventList) SetNextPage(v string)
- func (o ContractEventList) ToMap() (map[string]interface{}, error)
- func (o *ContractEventList) UnmarshalJSON(data []byte) (err error)
- type ContractEventsAPI
- type ContractEventsAPIService
- type ContractInvocation
- func (o *ContractInvocation) GetAbi() string
- func (o *ContractInvocation) GetAbiOk() (*string, bool)
- func (o *ContractInvocation) GetAddressId() string
- func (o *ContractInvocation) GetAddressIdOk() (*string, bool)
- func (o *ContractInvocation) GetAmount() string
- func (o *ContractInvocation) GetAmountOk() (*string, bool)
- func (o *ContractInvocation) GetArgs() string
- func (o *ContractInvocation) GetArgsOk() (*string, bool)
- func (o *ContractInvocation) GetContractAddress() string
- func (o *ContractInvocation) GetContractAddressOk() (*string, bool)
- func (o *ContractInvocation) GetContractInvocationId() string
- func (o *ContractInvocation) GetContractInvocationIdOk() (*string, bool)
- func (o *ContractInvocation) GetMethod() string
- func (o *ContractInvocation) GetMethodOk() (*string, bool)
- func (o *ContractInvocation) GetNetworkId() string
- func (o *ContractInvocation) GetNetworkIdOk() (*string, bool)
- func (o *ContractInvocation) GetTransaction() Transaction
- func (o *ContractInvocation) GetTransactionOk() (*Transaction, bool)
- func (o *ContractInvocation) GetWalletId() string
- func (o *ContractInvocation) GetWalletIdOk() (*string, bool)
- func (o *ContractInvocation) HasAbi() bool
- func (o ContractInvocation) MarshalJSON() ([]byte, error)
- func (o *ContractInvocation) SetAbi(v string)
- func (o *ContractInvocation) SetAddressId(v string)
- func (o *ContractInvocation) SetAmount(v string)
- func (o *ContractInvocation) SetArgs(v string)
- func (o *ContractInvocation) SetContractAddress(v string)
- func (o *ContractInvocation) SetContractInvocationId(v string)
- func (o *ContractInvocation) SetMethod(v string)
- func (o *ContractInvocation) SetNetworkId(v string)
- func (o *ContractInvocation) SetTransaction(v Transaction)
- func (o *ContractInvocation) SetWalletId(v string)
- func (o ContractInvocation) ToMap() (map[string]interface{}, error)
- func (o *ContractInvocation) UnmarshalJSON(data []byte) (err error)
- type ContractInvocationList
- func (o *ContractInvocationList) GetData() []ContractInvocation
- func (o *ContractInvocationList) GetDataOk() ([]ContractInvocation, bool)
- func (o *ContractInvocationList) GetHasMore() bool
- func (o *ContractInvocationList) GetHasMoreOk() (*bool, bool)
- func (o *ContractInvocationList) GetNextPage() string
- func (o *ContractInvocationList) GetNextPageOk() (*string, bool)
- func (o *ContractInvocationList) GetTotalCount() int32
- func (o *ContractInvocationList) GetTotalCountOk() (*int32, bool)
- func (o ContractInvocationList) MarshalJSON() ([]byte, error)
- func (o *ContractInvocationList) SetData(v []ContractInvocation)
- func (o *ContractInvocationList) SetHasMore(v bool)
- func (o *ContractInvocationList) SetNextPage(v string)
- func (o *ContractInvocationList) SetTotalCount(v int32)
- func (o ContractInvocationList) ToMap() (map[string]interface{}, error)
- func (o *ContractInvocationList) UnmarshalJSON(data []byte) (err error)
- type ContractInvocationsAPI
- type ContractInvocationsAPIService
- func (a *ContractInvocationsAPIService) BroadcastContractInvocation(ctx context.Context, walletId string, addressId string, ...) ApiBroadcastContractInvocationRequest
- func (a *ContractInvocationsAPIService) BroadcastContractInvocationExecute(r ApiBroadcastContractInvocationRequest) (*ContractInvocation, *http.Response, error)
- func (a *ContractInvocationsAPIService) CreateContractInvocation(ctx context.Context, walletId string, addressId string) ApiCreateContractInvocationRequest
- func (a *ContractInvocationsAPIService) CreateContractInvocationExecute(r ApiCreateContractInvocationRequest) (*ContractInvocation, *http.Response, error)
- func (a *ContractInvocationsAPIService) GetContractInvocation(ctx context.Context, walletId string, addressId string, ...) ApiGetContractInvocationRequest
- func (a *ContractInvocationsAPIService) GetContractInvocationExecute(r ApiGetContractInvocationRequest) (*ContractInvocation, *http.Response, error)
- func (a *ContractInvocationsAPIService) ListContractInvocations(ctx context.Context, walletId string, addressId string) ApiListContractInvocationsRequest
- func (a *ContractInvocationsAPIService) ListContractInvocationsExecute(r ApiListContractInvocationsRequest) (*ContractInvocationList, *http.Response, error)
- type CreateAddressRequest
- func (o *CreateAddressRequest) GetAddressIndex() int32
- func (o *CreateAddressRequest) GetAddressIndexOk() (*int32, bool)
- func (o *CreateAddressRequest) GetAttestation() string
- func (o *CreateAddressRequest) GetAttestationOk() (*string, bool)
- func (o *CreateAddressRequest) GetPublicKey() string
- func (o *CreateAddressRequest) GetPublicKeyOk() (*string, bool)
- func (o *CreateAddressRequest) HasAddressIndex() bool
- func (o *CreateAddressRequest) HasAttestation() bool
- func (o *CreateAddressRequest) HasPublicKey() bool
- func (o CreateAddressRequest) MarshalJSON() ([]byte, error)
- func (o *CreateAddressRequest) SetAddressIndex(v int32)
- func (o *CreateAddressRequest) SetAttestation(v string)
- func (o *CreateAddressRequest) SetPublicKey(v string)
- func (o CreateAddressRequest) ToMap() (map[string]interface{}, error)
- type CreateContractInvocationRequest
- func (o *CreateContractInvocationRequest) GetAbi() string
- func (o *CreateContractInvocationRequest) GetAbiOk() (*string, bool)
- func (o *CreateContractInvocationRequest) GetAmount() string
- func (o *CreateContractInvocationRequest) GetAmountOk() (*string, bool)
- func (o *CreateContractInvocationRequest) GetArgs() string
- func (o *CreateContractInvocationRequest) GetArgsOk() (*string, bool)
- func (o *CreateContractInvocationRequest) GetContractAddress() string
- func (o *CreateContractInvocationRequest) GetContractAddressOk() (*string, bool)
- func (o *CreateContractInvocationRequest) GetMethod() string
- func (o *CreateContractInvocationRequest) GetMethodOk() (*string, bool)
- func (o *CreateContractInvocationRequest) HasAbi() bool
- func (o *CreateContractInvocationRequest) HasAmount() bool
- func (o CreateContractInvocationRequest) MarshalJSON() ([]byte, error)
- func (o *CreateContractInvocationRequest) SetAbi(v string)
- func (o *CreateContractInvocationRequest) SetAmount(v string)
- func (o *CreateContractInvocationRequest) SetArgs(v string)
- func (o *CreateContractInvocationRequest) SetContractAddress(v string)
- func (o *CreateContractInvocationRequest) SetMethod(v string)
- func (o CreateContractInvocationRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateContractInvocationRequest) UnmarshalJSON(data []byte) (err error)
- type CreatePayloadSignatureRequest
- func (o *CreatePayloadSignatureRequest) GetSignature() string
- func (o *CreatePayloadSignatureRequest) GetSignatureOk() (*string, bool)
- func (o *CreatePayloadSignatureRequest) GetUnsignedPayload() string
- func (o *CreatePayloadSignatureRequest) GetUnsignedPayloadOk() (*string, bool)
- func (o *CreatePayloadSignatureRequest) HasSignature() bool
- func (o CreatePayloadSignatureRequest) MarshalJSON() ([]byte, error)
- func (o *CreatePayloadSignatureRequest) SetSignature(v string)
- func (o *CreatePayloadSignatureRequest) SetUnsignedPayload(v string)
- func (o CreatePayloadSignatureRequest) ToMap() (map[string]interface{}, error)
- func (o *CreatePayloadSignatureRequest) UnmarshalJSON(data []byte) (err error)
- type CreateServerSignerRequest
- func (o *CreateServerSignerRequest) GetEnrollmentData() string
- func (o *CreateServerSignerRequest) GetEnrollmentDataOk() (*string, bool)
- func (o *CreateServerSignerRequest) GetIsMpc() bool
- func (o *CreateServerSignerRequest) GetIsMpcOk() (*bool, bool)
- func (o *CreateServerSignerRequest) GetServerSignerId() string
- func (o *CreateServerSignerRequest) GetServerSignerIdOk() (*string, bool)
- func (o *CreateServerSignerRequest) HasServerSignerId() bool
- func (o CreateServerSignerRequest) MarshalJSON() ([]byte, error)
- func (o *CreateServerSignerRequest) SetEnrollmentData(v string)
- func (o *CreateServerSignerRequest) SetIsMpc(v bool)
- func (o *CreateServerSignerRequest) SetServerSignerId(v string)
- func (o CreateServerSignerRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateServerSignerRequest) UnmarshalJSON(data []byte) (err error)
- type CreateSmartContractRequest
- func (o *CreateSmartContractRequest) GetOptions() SmartContractOptions
- func (o *CreateSmartContractRequest) GetOptionsOk() (*SmartContractOptions, bool)
- func (o *CreateSmartContractRequest) GetType() SmartContractType
- func (o *CreateSmartContractRequest) GetTypeOk() (*SmartContractType, bool)
- func (o CreateSmartContractRequest) MarshalJSON() ([]byte, error)
- func (o *CreateSmartContractRequest) SetOptions(v SmartContractOptions)
- func (o *CreateSmartContractRequest) SetType(v SmartContractType)
- func (o CreateSmartContractRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateSmartContractRequest) UnmarshalJSON(data []byte) (err error)
- type CreateStakingOperationRequest
- func (o *CreateStakingOperationRequest) GetAction() string
- func (o *CreateStakingOperationRequest) GetActionOk() (*string, bool)
- func (o *CreateStakingOperationRequest) GetAssetId() string
- func (o *CreateStakingOperationRequest) GetAssetIdOk() (*string, bool)
- func (o *CreateStakingOperationRequest) GetNetworkId() string
- func (o *CreateStakingOperationRequest) GetNetworkIdOk() (*string, bool)
- func (o *CreateStakingOperationRequest) GetOptions() map[string]string
- func (o *CreateStakingOperationRequest) GetOptionsOk() (*map[string]string, bool)
- func (o CreateStakingOperationRequest) MarshalJSON() ([]byte, error)
- func (o *CreateStakingOperationRequest) SetAction(v string)
- func (o *CreateStakingOperationRequest) SetAssetId(v string)
- func (o *CreateStakingOperationRequest) SetNetworkId(v string)
- func (o *CreateStakingOperationRequest) SetOptions(v map[string]string)
- func (o CreateStakingOperationRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateStakingOperationRequest) UnmarshalJSON(data []byte) (err error)
- type CreateTradeRequest
- func (o *CreateTradeRequest) GetAmount() string
- func (o *CreateTradeRequest) GetAmountOk() (*string, bool)
- func (o *CreateTradeRequest) GetFromAssetId() string
- func (o *CreateTradeRequest) GetFromAssetIdOk() (*string, bool)
- func (o *CreateTradeRequest) GetToAssetId() string
- func (o *CreateTradeRequest) GetToAssetIdOk() (*string, bool)
- func (o CreateTradeRequest) MarshalJSON() ([]byte, error)
- func (o *CreateTradeRequest) SetAmount(v string)
- func (o *CreateTradeRequest) SetFromAssetId(v string)
- func (o *CreateTradeRequest) SetToAssetId(v string)
- func (o CreateTradeRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateTradeRequest) UnmarshalJSON(data []byte) (err error)
- type CreateTransferRequest
- func (o *CreateTransferRequest) GetAmount() string
- func (o *CreateTransferRequest) GetAmountOk() (*string, bool)
- func (o *CreateTransferRequest) GetAssetId() string
- func (o *CreateTransferRequest) GetAssetIdOk() (*string, bool)
- func (o *CreateTransferRequest) GetDestination() string
- func (o *CreateTransferRequest) GetDestinationOk() (*string, bool)
- func (o *CreateTransferRequest) GetGasless() bool
- func (o *CreateTransferRequest) GetGaslessOk() (*bool, bool)
- func (o *CreateTransferRequest) GetNetworkId() string
- func (o *CreateTransferRequest) GetNetworkIdOk() (*string, bool)
- func (o *CreateTransferRequest) HasGasless() bool
- func (o CreateTransferRequest) MarshalJSON() ([]byte, error)
- func (o *CreateTransferRequest) SetAmount(v string)
- func (o *CreateTransferRequest) SetAssetId(v string)
- func (o *CreateTransferRequest) SetDestination(v string)
- func (o *CreateTransferRequest) SetGasless(v bool)
- func (o *CreateTransferRequest) SetNetworkId(v string)
- func (o CreateTransferRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateTransferRequest) UnmarshalJSON(data []byte) (err error)
- type CreateWalletRequest
- func (o *CreateWalletRequest) GetWallet() CreateWalletRequestWallet
- func (o *CreateWalletRequest) GetWalletOk() (*CreateWalletRequestWallet, bool)
- func (o CreateWalletRequest) MarshalJSON() ([]byte, error)
- func (o *CreateWalletRequest) SetWallet(v CreateWalletRequestWallet)
- func (o CreateWalletRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateWalletRequest) UnmarshalJSON(data []byte) (err error)
- type CreateWalletRequestWallet
- func (o *CreateWalletRequestWallet) GetNetworkId() string
- func (o *CreateWalletRequestWallet) GetNetworkIdOk() (*string, bool)
- func (o *CreateWalletRequestWallet) GetUseServerSigner() bool
- func (o *CreateWalletRequestWallet) GetUseServerSignerOk() (*bool, bool)
- func (o *CreateWalletRequestWallet) HasUseServerSigner() bool
- func (o CreateWalletRequestWallet) MarshalJSON() ([]byte, error)
- func (o *CreateWalletRequestWallet) SetNetworkId(v string)
- func (o *CreateWalletRequestWallet) SetUseServerSigner(v bool)
- func (o CreateWalletRequestWallet) ToMap() (map[string]interface{}, error)
- func (o *CreateWalletRequestWallet) UnmarshalJSON(data []byte) (err error)
- type CreateWebhookRequest
- func (o *CreateWebhookRequest) GetEventFilters() []WebhookEventFilter
- func (o *CreateWebhookRequest) GetEventFiltersOk() ([]WebhookEventFilter, bool)
- func (o *CreateWebhookRequest) GetEventType() WebhookEventType
- func (o *CreateWebhookRequest) GetEventTypeFilter() WebhookEventTypeFilter
- func (o *CreateWebhookRequest) GetEventTypeFilterOk() (*WebhookEventTypeFilter, bool)
- func (o *CreateWebhookRequest) GetEventTypeOk() (*WebhookEventType, bool)
- func (o *CreateWebhookRequest) GetNetworkId() string
- func (o *CreateWebhookRequest) GetNetworkIdOk() (*string, bool)
- func (o *CreateWebhookRequest) GetNotificationUri() string
- func (o *CreateWebhookRequest) GetNotificationUriOk() (*string, bool)
- func (o *CreateWebhookRequest) GetSignatureHeader() string
- func (o *CreateWebhookRequest) GetSignatureHeaderOk() (*string, bool)
- func (o *CreateWebhookRequest) HasEventFilters() bool
- func (o *CreateWebhookRequest) HasEventTypeFilter() bool
- func (o *CreateWebhookRequest) HasSignatureHeader() bool
- func (o CreateWebhookRequest) MarshalJSON() ([]byte, error)
- func (o *CreateWebhookRequest) SetEventFilters(v []WebhookEventFilter)
- func (o *CreateWebhookRequest) SetEventType(v WebhookEventType)
- func (o *CreateWebhookRequest) SetEventTypeFilter(v WebhookEventTypeFilter)
- func (o *CreateWebhookRequest) SetNetworkId(v string)
- func (o *CreateWebhookRequest) SetNotificationUri(v string)
- func (o *CreateWebhookRequest) SetSignatureHeader(v string)
- func (o CreateWebhookRequest) ToMap() (map[string]interface{}, error)
- func (o *CreateWebhookRequest) UnmarshalJSON(data []byte) (err error)
- type DeploySmartContractRequest
- func (o *DeploySmartContractRequest) GetSignedPayload() string
- func (o *DeploySmartContractRequest) GetSignedPayloadOk() (*string, bool)
- func (o DeploySmartContractRequest) MarshalJSON() ([]byte, error)
- func (o *DeploySmartContractRequest) SetSignedPayload(v string)
- func (o DeploySmartContractRequest) ToMap() (map[string]interface{}, error)
- func (o *DeploySmartContractRequest) UnmarshalJSON(data []byte) (err error)
- type ERC20TransferEvent
- func (o *ERC20TransferEvent) GetBlockHash() string
- func (o *ERC20TransferEvent) GetBlockHashOk() (*string, bool)
- func (o *ERC20TransferEvent) GetBlockNumber() int32
- func (o *ERC20TransferEvent) GetBlockNumberOk() (*int32, bool)
- func (o *ERC20TransferEvent) GetBlockTime() time.Time
- func (o *ERC20TransferEvent) GetBlockTimeOk() (*time.Time, bool)
- func (o *ERC20TransferEvent) GetContractAddress() string
- func (o *ERC20TransferEvent) GetContractAddressOk() (*string, bool)
- func (o *ERC20TransferEvent) GetEventType() string
- func (o *ERC20TransferEvent) GetEventTypeOk() (*string, bool)
- func (o *ERC20TransferEvent) GetFrom() string
- func (o *ERC20TransferEvent) GetFromOk() (*string, bool)
- func (o *ERC20TransferEvent) GetLogIndex() int32
- func (o *ERC20TransferEvent) GetLogIndexOk() (*int32, bool)
- func (o *ERC20TransferEvent) GetNetwork() string
- func (o *ERC20TransferEvent) GetNetworkOk() (*string, bool)
- func (o *ERC20TransferEvent) GetTo() string
- func (o *ERC20TransferEvent) GetToOk() (*string, bool)
- func (o *ERC20TransferEvent) GetTransactionHash() string
- func (o *ERC20TransferEvent) GetTransactionHashOk() (*string, bool)
- func (o *ERC20TransferEvent) GetTransactionIndex() int32
- func (o *ERC20TransferEvent) GetTransactionIndexOk() (*int32, bool)
- func (o *ERC20TransferEvent) GetValue() string
- func (o *ERC20TransferEvent) GetValueOk() (*string, bool)
- func (o *ERC20TransferEvent) GetWebhookId() string
- func (o *ERC20TransferEvent) GetWebhookIdOk() (*string, bool)
- func (o *ERC20TransferEvent) HasBlockHash() bool
- func (o *ERC20TransferEvent) HasBlockNumber() bool
- func (o *ERC20TransferEvent) HasBlockTime() bool
- func (o *ERC20TransferEvent) HasContractAddress() bool
- func (o *ERC20TransferEvent) HasEventType() bool
- func (o *ERC20TransferEvent) HasFrom() bool
- func (o *ERC20TransferEvent) HasLogIndex() bool
- func (o *ERC20TransferEvent) HasNetwork() bool
- func (o *ERC20TransferEvent) HasTo() bool
- func (o *ERC20TransferEvent) HasTransactionHash() bool
- func (o *ERC20TransferEvent) HasTransactionIndex() bool
- func (o *ERC20TransferEvent) HasValue() bool
- func (o *ERC20TransferEvent) HasWebhookId() bool
- func (o ERC20TransferEvent) MarshalJSON() ([]byte, error)
- func (o *ERC20TransferEvent) SetBlockHash(v string)
- func (o *ERC20TransferEvent) SetBlockNumber(v int32)
- func (o *ERC20TransferEvent) SetBlockTime(v time.Time)
- func (o *ERC20TransferEvent) SetContractAddress(v string)
- func (o *ERC20TransferEvent) SetEventType(v string)
- func (o *ERC20TransferEvent) SetFrom(v string)
- func (o *ERC20TransferEvent) SetLogIndex(v int32)
- func (o *ERC20TransferEvent) SetNetwork(v string)
- func (o *ERC20TransferEvent) SetTo(v string)
- func (o *ERC20TransferEvent) SetTransactionHash(v string)
- func (o *ERC20TransferEvent) SetTransactionIndex(v int32)
- func (o *ERC20TransferEvent) SetValue(v string)
- func (o *ERC20TransferEvent) SetWebhookId(v string)
- func (o ERC20TransferEvent) ToMap() (map[string]interface{}, error)
- type ERC721TransferEvent
- func (o *ERC721TransferEvent) GetBlockHash() string
- func (o *ERC721TransferEvent) GetBlockHashOk() (*string, bool)
- func (o *ERC721TransferEvent) GetBlockNumber() int32
- func (o *ERC721TransferEvent) GetBlockNumberOk() (*int32, bool)
- func (o *ERC721TransferEvent) GetBlockTime() time.Time
- func (o *ERC721TransferEvent) GetBlockTimeOk() (*time.Time, bool)
- func (o *ERC721TransferEvent) GetContractAddress() string
- func (o *ERC721TransferEvent) GetContractAddressOk() (*string, bool)
- func (o *ERC721TransferEvent) GetEventType() string
- func (o *ERC721TransferEvent) GetEventTypeOk() (*string, bool)
- func (o *ERC721TransferEvent) GetFrom() string
- func (o *ERC721TransferEvent) GetFromOk() (*string, bool)
- func (o *ERC721TransferEvent) GetLogIndex() int32
- func (o *ERC721TransferEvent) GetLogIndexOk() (*int32, bool)
- func (o *ERC721TransferEvent) GetNetwork() string
- func (o *ERC721TransferEvent) GetNetworkOk() (*string, bool)
- func (o *ERC721TransferEvent) GetTo() string
- func (o *ERC721TransferEvent) GetToOk() (*string, bool)
- func (o *ERC721TransferEvent) GetTokenId() string
- func (o *ERC721TransferEvent) GetTokenIdOk() (*string, bool)
- func (o *ERC721TransferEvent) GetTransactionHash() string
- func (o *ERC721TransferEvent) GetTransactionHashOk() (*string, bool)
- func (o *ERC721TransferEvent) GetTransactionIndex() int32
- func (o *ERC721TransferEvent) GetTransactionIndexOk() (*int32, bool)
- func (o *ERC721TransferEvent) GetWebhookId() string
- func (o *ERC721TransferEvent) GetWebhookIdOk() (*string, bool)
- func (o *ERC721TransferEvent) HasBlockHash() bool
- func (o *ERC721TransferEvent) HasBlockNumber() bool
- func (o *ERC721TransferEvent) HasBlockTime() bool
- func (o *ERC721TransferEvent) HasContractAddress() bool
- func (o *ERC721TransferEvent) HasEventType() bool
- func (o *ERC721TransferEvent) HasFrom() bool
- func (o *ERC721TransferEvent) HasLogIndex() bool
- func (o *ERC721TransferEvent) HasNetwork() bool
- func (o *ERC721TransferEvent) HasTo() bool
- func (o *ERC721TransferEvent) HasTokenId() bool
- func (o *ERC721TransferEvent) HasTransactionHash() bool
- func (o *ERC721TransferEvent) HasTransactionIndex() bool
- func (o *ERC721TransferEvent) HasWebhookId() bool
- func (o ERC721TransferEvent) MarshalJSON() ([]byte, error)
- func (o *ERC721TransferEvent) SetBlockHash(v string)
- func (o *ERC721TransferEvent) SetBlockNumber(v int32)
- func (o *ERC721TransferEvent) SetBlockTime(v time.Time)
- func (o *ERC721TransferEvent) SetContractAddress(v string)
- func (o *ERC721TransferEvent) SetEventType(v string)
- func (o *ERC721TransferEvent) SetFrom(v string)
- func (o *ERC721TransferEvent) SetLogIndex(v int32)
- func (o *ERC721TransferEvent) SetNetwork(v string)
- func (o *ERC721TransferEvent) SetTo(v string)
- func (o *ERC721TransferEvent) SetTokenId(v string)
- func (o *ERC721TransferEvent) SetTransactionHash(v string)
- func (o *ERC721TransferEvent) SetTransactionIndex(v int32)
- func (o *ERC721TransferEvent) SetWebhookId(v string)
- func (o ERC721TransferEvent) ToMap() (map[string]interface{}, error)
- type Error
- func (o *Error) GetCode() string
- func (o *Error) GetCodeOk() (*string, bool)
- func (o *Error) GetCorrelationId() string
- func (o *Error) GetCorrelationIdOk() (*string, bool)
- func (o *Error) GetMessage() string
- func (o *Error) GetMessageOk() (*string, bool)
- func (o *Error) HasCorrelationId() bool
- func (o Error) MarshalJSON() ([]byte, error)
- func (o *Error) SetCode(v string)
- func (o *Error) SetCorrelationId(v string)
- func (o *Error) SetMessage(v string)
- func (o Error) ToMap() (map[string]interface{}, error)
- func (o *Error) UnmarshalJSON(data []byte) (err error)
- type EthereumTransaction
- func (o *EthereumTransaction) GetBlockTimestamp() time.Time
- func (o *EthereumTransaction) GetBlockTimestampOk() (*time.Time, bool)
- func (o *EthereumTransaction) GetFlattenedTraces() []EthereumTransactionFlattenedTrace
- func (o *EthereumTransaction) GetFlattenedTracesOk() ([]EthereumTransactionFlattenedTrace, bool)
- func (o *EthereumTransaction) GetFrom() string
- func (o *EthereumTransaction) GetFromOk() (*string, bool)
- func (o *EthereumTransaction) GetGas() int32
- func (o *EthereumTransaction) GetGasOk() (*int32, bool)
- func (o *EthereumTransaction) GetGasPrice() int32
- func (o *EthereumTransaction) GetGasPriceOk() (*int32, bool)
- func (o *EthereumTransaction) GetHash() string
- func (o *EthereumTransaction) GetHashOk() (*string, bool)
- func (o *EthereumTransaction) GetIndex() int32
- func (o *EthereumTransaction) GetIndexOk() (*int32, bool)
- func (o *EthereumTransaction) GetInput() string
- func (o *EthereumTransaction) GetInputOk() (*string, bool)
- func (o *EthereumTransaction) GetMaxFeePerGas() int32
- func (o *EthereumTransaction) GetMaxFeePerGasOk() (*int32, bool)
- func (o *EthereumTransaction) GetMaxPriorityFeePerGas() int32
- func (o *EthereumTransaction) GetMaxPriorityFeePerGasOk() (*int32, bool)
- func (o *EthereumTransaction) GetMint() string
- func (o *EthereumTransaction) GetMintOk() (*string, bool)
- func (o *EthereumTransaction) GetNonce() int32
- func (o *EthereumTransaction) GetNonceOk() (*int32, bool)
- func (o *EthereumTransaction) GetPriorityFeePerGas() int32
- func (o *EthereumTransaction) GetPriorityFeePerGasOk() (*int32, bool)
- func (o *EthereumTransaction) GetTo() string
- func (o *EthereumTransaction) GetToOk() (*string, bool)
- func (o *EthereumTransaction) GetTransactionAccessList() EthereumTransactionAccessList
- func (o *EthereumTransaction) GetTransactionAccessListOk() (*EthereumTransactionAccessList, bool)
- func (o *EthereumTransaction) GetType() int32
- func (o *EthereumTransaction) GetTypeOk() (*int32, bool)
- func (o *EthereumTransaction) GetValue() string
- func (o *EthereumTransaction) GetValueOk() (*string, bool)
- func (o *EthereumTransaction) HasBlockTimestamp() bool
- func (o *EthereumTransaction) HasFlattenedTraces() bool
- func (o *EthereumTransaction) HasGas() bool
- func (o *EthereumTransaction) HasGasPrice() bool
- func (o *EthereumTransaction) HasHash() bool
- func (o *EthereumTransaction) HasIndex() bool
- func (o *EthereumTransaction) HasInput() bool
- func (o *EthereumTransaction) HasMaxFeePerGas() bool
- func (o *EthereumTransaction) HasMaxPriorityFeePerGas() bool
- func (o *EthereumTransaction) HasMint() bool
- func (o *EthereumTransaction) HasNonce() bool
- func (o *EthereumTransaction) HasPriorityFeePerGas() bool
- func (o *EthereumTransaction) HasTransactionAccessList() bool
- func (o *EthereumTransaction) HasType() bool
- func (o *EthereumTransaction) HasValue() bool
- func (o EthereumTransaction) MarshalJSON() ([]byte, error)
- func (o *EthereumTransaction) SetBlockTimestamp(v time.Time)
- func (o *EthereumTransaction) SetFlattenedTraces(v []EthereumTransactionFlattenedTrace)
- func (o *EthereumTransaction) SetFrom(v string)
- func (o *EthereumTransaction) SetGas(v int32)
- func (o *EthereumTransaction) SetGasPrice(v int32)
- func (o *EthereumTransaction) SetHash(v string)
- func (o *EthereumTransaction) SetIndex(v int32)
- func (o *EthereumTransaction) SetInput(v string)
- func (o *EthereumTransaction) SetMaxFeePerGas(v int32)
- func (o *EthereumTransaction) SetMaxPriorityFeePerGas(v int32)
- func (o *EthereumTransaction) SetMint(v string)
- func (o *EthereumTransaction) SetNonce(v int32)
- func (o *EthereumTransaction) SetPriorityFeePerGas(v int32)
- func (o *EthereumTransaction) SetTo(v string)
- func (o *EthereumTransaction) SetTransactionAccessList(v EthereumTransactionAccessList)
- func (o *EthereumTransaction) SetType(v int32)
- func (o *EthereumTransaction) SetValue(v string)
- func (o EthereumTransaction) ToMap() (map[string]interface{}, error)
- func (o *EthereumTransaction) UnmarshalJSON(data []byte) (err error)
- type EthereumTransactionAccess
- func (o *EthereumTransactionAccess) GetAddress() string
- func (o *EthereumTransactionAccess) GetAddressOk() (*string, bool)
- func (o *EthereumTransactionAccess) GetStorageKeys() []string
- func (o *EthereumTransactionAccess) GetStorageKeysOk() ([]string, bool)
- func (o *EthereumTransactionAccess) HasAddress() bool
- func (o *EthereumTransactionAccess) HasStorageKeys() bool
- func (o EthereumTransactionAccess) MarshalJSON() ([]byte, error)
- func (o *EthereumTransactionAccess) SetAddress(v string)
- func (o *EthereumTransactionAccess) SetStorageKeys(v []string)
- func (o EthereumTransactionAccess) ToMap() (map[string]interface{}, error)
- type EthereumTransactionAccessList
- func (o *EthereumTransactionAccessList) GetAccessList() []EthereumTransactionAccess
- func (o *EthereumTransactionAccessList) GetAccessListOk() ([]EthereumTransactionAccess, bool)
- func (o *EthereumTransactionAccessList) HasAccessList() bool
- func (o EthereumTransactionAccessList) MarshalJSON() ([]byte, error)
- func (o *EthereumTransactionAccessList) SetAccessList(v []EthereumTransactionAccess)
- func (o EthereumTransactionAccessList) ToMap() (map[string]interface{}, error)
- type EthereumTransactionFlattenedTrace
- func (o *EthereumTransactionFlattenedTrace) GetBlockHash() string
- func (o *EthereumTransactionFlattenedTrace) GetBlockHashOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetBlockNumber() int32
- func (o *EthereumTransactionFlattenedTrace) GetBlockNumberOk() (*int32, bool)
- func (o *EthereumTransactionFlattenedTrace) GetCallType() string
- func (o *EthereumTransactionFlattenedTrace) GetCallTypeOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetError() string
- func (o *EthereumTransactionFlattenedTrace) GetErrorOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetFrom() string
- func (o *EthereumTransactionFlattenedTrace) GetFromOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetGas() int32
- func (o *EthereumTransactionFlattenedTrace) GetGasOk() (*int32, bool)
- func (o *EthereumTransactionFlattenedTrace) GetGasUsed() int32
- func (o *EthereumTransactionFlattenedTrace) GetGasUsedOk() (*int32, bool)
- func (o *EthereumTransactionFlattenedTrace) GetInput() string
- func (o *EthereumTransactionFlattenedTrace) GetInputOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetOutput() string
- func (o *EthereumTransactionFlattenedTrace) GetOutputOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetStatus() int32
- func (o *EthereumTransactionFlattenedTrace) GetStatusOk() (*int32, bool)
- func (o *EthereumTransactionFlattenedTrace) GetSubTraces() int32
- func (o *EthereumTransactionFlattenedTrace) GetSubTracesOk() (*int32, bool)
- func (o *EthereumTransactionFlattenedTrace) GetTo() string
- func (o *EthereumTransactionFlattenedTrace) GetToOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetTraceAddress() []int32
- func (o *EthereumTransactionFlattenedTrace) GetTraceAddressOk() ([]int32, bool)
- func (o *EthereumTransactionFlattenedTrace) GetTraceId() string
- func (o *EthereumTransactionFlattenedTrace) GetTraceIdOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetTraceType() string
- func (o *EthereumTransactionFlattenedTrace) GetTraceTypeOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetTransactionHash() string
- func (o *EthereumTransactionFlattenedTrace) GetTransactionHashOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetTransactionIndex() int32
- func (o *EthereumTransactionFlattenedTrace) GetTransactionIndexOk() (*int32, bool)
- func (o *EthereumTransactionFlattenedTrace) GetType() string
- func (o *EthereumTransactionFlattenedTrace) GetTypeOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) GetValue() string
- func (o *EthereumTransactionFlattenedTrace) GetValueOk() (*string, bool)
- func (o *EthereumTransactionFlattenedTrace) HasBlockHash() bool
- func (o *EthereumTransactionFlattenedTrace) HasBlockNumber() bool
- func (o *EthereumTransactionFlattenedTrace) HasCallType() bool
- func (o *EthereumTransactionFlattenedTrace) HasError() bool
- func (o *EthereumTransactionFlattenedTrace) HasFrom() bool
- func (o *EthereumTransactionFlattenedTrace) HasGas() bool
- func (o *EthereumTransactionFlattenedTrace) HasGasUsed() bool
- func (o *EthereumTransactionFlattenedTrace) HasInput() bool
- func (o *EthereumTransactionFlattenedTrace) HasOutput() bool
- func (o *EthereumTransactionFlattenedTrace) HasStatus() bool
- func (o *EthereumTransactionFlattenedTrace) HasSubTraces() bool
- func (o *EthereumTransactionFlattenedTrace) HasTo() bool
- func (o *EthereumTransactionFlattenedTrace) HasTraceAddress() bool
- func (o *EthereumTransactionFlattenedTrace) HasTraceId() bool
- func (o *EthereumTransactionFlattenedTrace) HasTraceType() bool
- func (o *EthereumTransactionFlattenedTrace) HasTransactionHash() bool
- func (o *EthereumTransactionFlattenedTrace) HasTransactionIndex() bool
- func (o *EthereumTransactionFlattenedTrace) HasType() bool
- func (o *EthereumTransactionFlattenedTrace) HasValue() bool
- func (o EthereumTransactionFlattenedTrace) MarshalJSON() ([]byte, error)
- func (o *EthereumTransactionFlattenedTrace) SetBlockHash(v string)
- func (o *EthereumTransactionFlattenedTrace) SetBlockNumber(v int32)
- func (o *EthereumTransactionFlattenedTrace) SetCallType(v string)
- func (o *EthereumTransactionFlattenedTrace) SetError(v string)
- func (o *EthereumTransactionFlattenedTrace) SetFrom(v string)
- func (o *EthereumTransactionFlattenedTrace) SetGas(v int32)
- func (o *EthereumTransactionFlattenedTrace) SetGasUsed(v int32)
- func (o *EthereumTransactionFlattenedTrace) SetInput(v string)
- func (o *EthereumTransactionFlattenedTrace) SetOutput(v string)
- func (o *EthereumTransactionFlattenedTrace) SetStatus(v int32)
- func (o *EthereumTransactionFlattenedTrace) SetSubTraces(v int32)
- func (o *EthereumTransactionFlattenedTrace) SetTo(v string)
- func (o *EthereumTransactionFlattenedTrace) SetTraceAddress(v []int32)
- func (o *EthereumTransactionFlattenedTrace) SetTraceId(v string)
- func (o *EthereumTransactionFlattenedTrace) SetTraceType(v string)
- func (o *EthereumTransactionFlattenedTrace) SetTransactionHash(v string)
- func (o *EthereumTransactionFlattenedTrace) SetTransactionIndex(v int32)
- func (o *EthereumTransactionFlattenedTrace) SetType(v string)
- func (o *EthereumTransactionFlattenedTrace) SetValue(v string)
- func (o EthereumTransactionFlattenedTrace) ToMap() (map[string]interface{}, error)
- type EthereumValidatorMetadata
- func (o *EthereumValidatorMetadata) GetActivationEpoch() string
- func (o *EthereumValidatorMetadata) GetActivationEpochOk() (*string, bool)
- func (o *EthereumValidatorMetadata) GetBalance() Balance
- func (o *EthereumValidatorMetadata) GetBalanceOk() (*Balance, bool)
- func (o *EthereumValidatorMetadata) GetEffectiveBalance() Balance
- func (o *EthereumValidatorMetadata) GetEffectiveBalanceOk() (*Balance, bool)
- func (o *EthereumValidatorMetadata) GetExitEpoch() string
- func (o *EthereumValidatorMetadata) GetExitEpochOk() (*string, bool)
- func (o *EthereumValidatorMetadata) GetIndex() string
- func (o *EthereumValidatorMetadata) GetIndexOk() (*string, bool)
- func (o *EthereumValidatorMetadata) GetPublicKey() string
- func (o *EthereumValidatorMetadata) GetPublicKeyOk() (*string, bool)
- func (o *EthereumValidatorMetadata) GetSlashed() bool
- func (o *EthereumValidatorMetadata) GetSlashedOk() (*bool, bool)
- func (o *EthereumValidatorMetadata) GetWithdrawableEpoch() string
- func (o *EthereumValidatorMetadata) GetWithdrawableEpochOk() (*string, bool)
- func (o *EthereumValidatorMetadata) GetWithdrawalAddress() string
- func (o *EthereumValidatorMetadata) GetWithdrawalAddressOk() (*string, bool)
- func (o EthereumValidatorMetadata) MarshalJSON() ([]byte, error)
- func (o *EthereumValidatorMetadata) SetActivationEpoch(v string)
- func (o *EthereumValidatorMetadata) SetBalance(v Balance)
- func (o *EthereumValidatorMetadata) SetEffectiveBalance(v Balance)
- func (o *EthereumValidatorMetadata) SetExitEpoch(v string)
- func (o *EthereumValidatorMetadata) SetIndex(v string)
- func (o *EthereumValidatorMetadata) SetPublicKey(v string)
- func (o *EthereumValidatorMetadata) SetSlashed(v bool)
- func (o *EthereumValidatorMetadata) SetWithdrawableEpoch(v string)
- func (o *EthereumValidatorMetadata) SetWithdrawalAddress(v string)
- func (o EthereumValidatorMetadata) ToMap() (map[string]interface{}, error)
- func (o *EthereumValidatorMetadata) UnmarshalJSON(data []byte) (err error)
- type ExternalAddressesAPI
- type ExternalAddressesAPIService
- func (a *ExternalAddressesAPIService) GetExternalAddressBalance(ctx context.Context, networkId string, addressId string, assetId string) ApiGetExternalAddressBalanceRequest
- func (a *ExternalAddressesAPIService) GetExternalAddressBalanceExecute(r ApiGetExternalAddressBalanceRequest) (*Balance, *http.Response, error)
- func (a *ExternalAddressesAPIService) ListAddressTransactions(ctx context.Context, networkId string, addressId string) ApiListAddressTransactionsRequest
- func (a *ExternalAddressesAPIService) ListAddressTransactionsExecute(r ApiListAddressTransactionsRequest) (*AddressTransactionList, *http.Response, error)
- func (a *ExternalAddressesAPIService) ListExternalAddressBalances(ctx context.Context, networkId string, addressId string) ApiListExternalAddressBalancesRequest
- func (a *ExternalAddressesAPIService) ListExternalAddressBalancesExecute(r ApiListExternalAddressBalancesRequest) (*AddressBalanceList, *http.Response, error)
- func (a *ExternalAddressesAPIService) RequestExternalFaucetFunds(ctx context.Context, networkId string, addressId string) ApiRequestExternalFaucetFundsRequest
- func (a *ExternalAddressesAPIService) RequestExternalFaucetFundsExecute(r ApiRequestExternalFaucetFundsRequest) (*FaucetTransaction, *http.Response, error)
- type FaucetTransaction
- func (o *FaucetTransaction) GetTransactionHash() string
- func (o *FaucetTransaction) GetTransactionHashOk() (*string, bool)
- func (o *FaucetTransaction) GetTransactionLink() string
- func (o *FaucetTransaction) GetTransactionLinkOk() (*string, bool)
- func (o FaucetTransaction) MarshalJSON() ([]byte, error)
- func (o *FaucetTransaction) SetTransactionHash(v string)
- func (o *FaucetTransaction) SetTransactionLink(v string)
- func (o FaucetTransaction) ToMap() (map[string]interface{}, error)
- func (o *FaucetTransaction) UnmarshalJSON(data []byte) (err error)
- type FeatureSet
- func (o *FeatureSet) GetFaucet() bool
- func (o *FeatureSet) GetFaucetOk() (*bool, bool)
- func (o *FeatureSet) GetGaslessSend() bool
- func (o *FeatureSet) GetGaslessSendOk() (*bool, bool)
- func (o *FeatureSet) GetServerSigner() bool
- func (o *FeatureSet) GetServerSignerOk() (*bool, bool)
- func (o *FeatureSet) GetStake() bool
- func (o *FeatureSet) GetStakeOk() (*bool, bool)
- func (o *FeatureSet) GetTrade() bool
- func (o *FeatureSet) GetTradeOk() (*bool, bool)
- func (o *FeatureSet) GetTransfer() bool
- func (o *FeatureSet) GetTransferOk() (*bool, bool)
- func (o FeatureSet) MarshalJSON() ([]byte, error)
- func (o *FeatureSet) SetFaucet(v bool)
- func (o *FeatureSet) SetGaslessSend(v bool)
- func (o *FeatureSet) SetServerSigner(v bool)
- func (o *FeatureSet) SetStake(v bool)
- func (o *FeatureSet) SetTrade(v bool)
- func (o *FeatureSet) SetTransfer(v bool)
- func (o FeatureSet) ToMap() (map[string]interface{}, error)
- func (o *FeatureSet) UnmarshalJSON(data []byte) (err error)
- type FetchHistoricalStakingBalances200Response
- func (o *FetchHistoricalStakingBalances200Response) GetData() []StakingBalance
- func (o *FetchHistoricalStakingBalances200Response) GetDataOk() ([]StakingBalance, bool)
- func (o *FetchHistoricalStakingBalances200Response) GetHasMore() bool
- func (o *FetchHistoricalStakingBalances200Response) GetHasMoreOk() (*bool, bool)
- func (o *FetchHistoricalStakingBalances200Response) GetNextPage() string
- func (o *FetchHistoricalStakingBalances200Response) GetNextPageOk() (*string, bool)
- func (o FetchHistoricalStakingBalances200Response) MarshalJSON() ([]byte, error)
- func (o *FetchHistoricalStakingBalances200Response) SetData(v []StakingBalance)
- func (o *FetchHistoricalStakingBalances200Response) SetHasMore(v bool)
- func (o *FetchHistoricalStakingBalances200Response) SetNextPage(v string)
- func (o FetchHistoricalStakingBalances200Response) ToMap() (map[string]interface{}, error)
- func (o *FetchHistoricalStakingBalances200Response) UnmarshalJSON(data []byte) (err error)
- type FetchStakingRewards200Response
- func (o *FetchStakingRewards200Response) GetData() []StakingReward
- func (o *FetchStakingRewards200Response) GetDataOk() ([]StakingReward, bool)
- func (o *FetchStakingRewards200Response) GetHasMore() bool
- func (o *FetchStakingRewards200Response) GetHasMoreOk() (*bool, bool)
- func (o *FetchStakingRewards200Response) GetNextPage() string
- func (o *FetchStakingRewards200Response) GetNextPageOk() (*string, bool)
- func (o FetchStakingRewards200Response) MarshalJSON() ([]byte, error)
- func (o *FetchStakingRewards200Response) SetData(v []StakingReward)
- func (o *FetchStakingRewards200Response) SetHasMore(v bool)
- func (o *FetchStakingRewards200Response) SetNextPage(v string)
- func (o FetchStakingRewards200Response) ToMap() (map[string]interface{}, error)
- func (o *FetchStakingRewards200Response) UnmarshalJSON(data []byte) (err error)
- type FetchStakingRewardsRequest
- func (o *FetchStakingRewardsRequest) GetAddressIds() []string
- func (o *FetchStakingRewardsRequest) GetAddressIdsOk() ([]string, bool)
- func (o *FetchStakingRewardsRequest) GetAssetId() string
- func (o *FetchStakingRewardsRequest) GetAssetIdOk() (*string, bool)
- func (o *FetchStakingRewardsRequest) GetEndTime() time.Time
- func (o *FetchStakingRewardsRequest) GetEndTimeOk() (*time.Time, bool)
- func (o *FetchStakingRewardsRequest) GetFormat() StakingRewardFormat
- func (o *FetchStakingRewardsRequest) GetFormatOk() (*StakingRewardFormat, bool)
- func (o *FetchStakingRewardsRequest) GetNetworkId() string
- func (o *FetchStakingRewardsRequest) GetNetworkIdOk() (*string, bool)
- func (o *FetchStakingRewardsRequest) GetStartTime() time.Time
- func (o *FetchStakingRewardsRequest) GetStartTimeOk() (*time.Time, bool)
- func (o FetchStakingRewardsRequest) MarshalJSON() ([]byte, error)
- func (o *FetchStakingRewardsRequest) SetAddressIds(v []string)
- func (o *FetchStakingRewardsRequest) SetAssetId(v string)
- func (o *FetchStakingRewardsRequest) SetEndTime(v time.Time)
- func (o *FetchStakingRewardsRequest) SetFormat(v StakingRewardFormat)
- func (o *FetchStakingRewardsRequest) SetNetworkId(v string)
- func (o *FetchStakingRewardsRequest) SetStartTime(v time.Time)
- func (o FetchStakingRewardsRequest) ToMap() (map[string]interface{}, error)
- func (o *FetchStakingRewardsRequest) UnmarshalJSON(data []byte) (err error)
- type GenericOpenAPIError
- type GetStakingContextRequest
- func (o *GetStakingContextRequest) GetAddressId() string
- func (o *GetStakingContextRequest) GetAddressIdOk() (*string, bool)
- func (o *GetStakingContextRequest) GetAssetId() string
- func (o *GetStakingContextRequest) GetAssetIdOk() (*string, bool)
- func (o *GetStakingContextRequest) GetNetworkId() string
- func (o *GetStakingContextRequest) GetNetworkIdOk() (*string, bool)
- func (o *GetStakingContextRequest) GetOptions() map[string]string
- func (o *GetStakingContextRequest) GetOptionsOk() (*map[string]string, bool)
- func (o GetStakingContextRequest) MarshalJSON() ([]byte, error)
- func (o *GetStakingContextRequest) SetAddressId(v string)
- func (o *GetStakingContextRequest) SetAssetId(v string)
- func (o *GetStakingContextRequest) SetNetworkId(v string)
- func (o *GetStakingContextRequest) SetOptions(v map[string]string)
- func (o GetStakingContextRequest) ToMap() (map[string]interface{}, error)
- func (o *GetStakingContextRequest) UnmarshalJSON(data []byte) (err error)
- type HistoricalBalance
- func (o *HistoricalBalance) GetAmount() string
- func (o *HistoricalBalance) GetAmountOk() (*string, bool)
- func (o *HistoricalBalance) GetAsset() Asset
- func (o *HistoricalBalance) GetAssetOk() (*Asset, bool)
- func (o *HistoricalBalance) GetBlockHash() string
- func (o *HistoricalBalance) GetBlockHashOk() (*string, bool)
- func (o *HistoricalBalance) GetBlockHeight() string
- func (o *HistoricalBalance) GetBlockHeightOk() (*string, bool)
- func (o HistoricalBalance) MarshalJSON() ([]byte, error)
- func (o *HistoricalBalance) SetAmount(v string)
- func (o *HistoricalBalance) SetAsset(v Asset)
- func (o *HistoricalBalance) SetBlockHash(v string)
- func (o *HistoricalBalance) SetBlockHeight(v string)
- func (o HistoricalBalance) ToMap() (map[string]interface{}, error)
- func (o *HistoricalBalance) UnmarshalJSON(data []byte) (err error)
- type MappedNullable
- type NFTContractOptions
- func (o *NFTContractOptions) GetName() string
- func (o *NFTContractOptions) GetNameOk() (*string, bool)
- func (o *NFTContractOptions) GetSymbol() string
- func (o *NFTContractOptions) GetSymbolOk() (*string, bool)
- func (o NFTContractOptions) MarshalJSON() ([]byte, error)
- func (o *NFTContractOptions) SetName(v string)
- func (o *NFTContractOptions) SetSymbol(v string)
- func (o NFTContractOptions) ToMap() (map[string]interface{}, error)
- func (o *NFTContractOptions) UnmarshalJSON(data []byte) (err error)
- type Network
- func (o *Network) GetAddressPathPrefix() string
- func (o *Network) GetAddressPathPrefixOk() (*string, bool)
- func (o *Network) GetChainId() int32
- func (o *Network) GetChainIdOk() (*int32, bool)
- func (o *Network) GetDisplayName() string
- func (o *Network) GetDisplayNameOk() (*string, bool)
- func (o *Network) GetFeatureSet() FeatureSet
- func (o *Network) GetFeatureSetOk() (*FeatureSet, bool)
- func (o *Network) GetId() NetworkIdentifier
- func (o *Network) GetIdOk() (*NetworkIdentifier, bool)
- func (o *Network) GetIsTestnet() bool
- func (o *Network) GetIsTestnetOk() (*bool, bool)
- func (o *Network) GetNativeAsset() Asset
- func (o *Network) GetNativeAssetOk() (*Asset, bool)
- func (o *Network) GetProtocolFamily() string
- func (o *Network) GetProtocolFamilyOk() (*string, bool)
- func (o *Network) HasAddressPathPrefix() bool
- func (o Network) MarshalJSON() ([]byte, error)
- func (o *Network) SetAddressPathPrefix(v string)
- func (o *Network) SetChainId(v int32)
- func (o *Network) SetDisplayName(v string)
- func (o *Network) SetFeatureSet(v FeatureSet)
- func (o *Network) SetId(v NetworkIdentifier)
- func (o *Network) SetIsTestnet(v bool)
- func (o *Network) SetNativeAsset(v Asset)
- func (o *Network) SetProtocolFamily(v string)
- func (o Network) ToMap() (map[string]interface{}, error)
- func (o *Network) UnmarshalJSON(data []byte) (err error)
- type NetworkIdentifier
- type NetworksAPI
- type NetworksAPIService
- type NullableAddress
- type NullableAddressBalanceList
- func (v NullableAddressBalanceList) Get() *AddressBalanceList
- func (v NullableAddressBalanceList) IsSet() bool
- func (v NullableAddressBalanceList) MarshalJSON() ([]byte, error)
- func (v *NullableAddressBalanceList) Set(val *AddressBalanceList)
- func (v *NullableAddressBalanceList) UnmarshalJSON(src []byte) error
- func (v *NullableAddressBalanceList) Unset()
- type NullableAddressHistoricalBalanceList
- func (v NullableAddressHistoricalBalanceList) Get() *AddressHistoricalBalanceList
- func (v NullableAddressHistoricalBalanceList) IsSet() bool
- func (v NullableAddressHistoricalBalanceList) MarshalJSON() ([]byte, error)
- func (v *NullableAddressHistoricalBalanceList) Set(val *AddressHistoricalBalanceList)
- func (v *NullableAddressHistoricalBalanceList) UnmarshalJSON(src []byte) error
- func (v *NullableAddressHistoricalBalanceList) Unset()
- type NullableAddressList
- func (v NullableAddressList) Get() *AddressList
- func (v NullableAddressList) IsSet() bool
- func (v NullableAddressList) MarshalJSON() ([]byte, error)
- func (v *NullableAddressList) Set(val *AddressList)
- func (v *NullableAddressList) UnmarshalJSON(src []byte) error
- func (v *NullableAddressList) Unset()
- type NullableAddressTransactionList
- func (v NullableAddressTransactionList) Get() *AddressTransactionList
- func (v NullableAddressTransactionList) IsSet() bool
- func (v NullableAddressTransactionList) MarshalJSON() ([]byte, error)
- func (v *NullableAddressTransactionList) Set(val *AddressTransactionList)
- func (v *NullableAddressTransactionList) UnmarshalJSON(src []byte) error
- func (v *NullableAddressTransactionList) Unset()
- type NullableAsset
- type NullableBalance
- type NullableBool
- type NullableBroadcastContractInvocationRequest
- func (v NullableBroadcastContractInvocationRequest) Get() *BroadcastContractInvocationRequest
- func (v NullableBroadcastContractInvocationRequest) IsSet() bool
- func (v NullableBroadcastContractInvocationRequest) MarshalJSON() ([]byte, error)
- func (v *NullableBroadcastContractInvocationRequest) Set(val *BroadcastContractInvocationRequest)
- func (v *NullableBroadcastContractInvocationRequest) UnmarshalJSON(src []byte) error
- func (v *NullableBroadcastContractInvocationRequest) Unset()
- type NullableBroadcastStakingOperationRequest
- func (v NullableBroadcastStakingOperationRequest) Get() *BroadcastStakingOperationRequest
- func (v NullableBroadcastStakingOperationRequest) IsSet() bool
- func (v NullableBroadcastStakingOperationRequest) MarshalJSON() ([]byte, error)
- func (v *NullableBroadcastStakingOperationRequest) Set(val *BroadcastStakingOperationRequest)
- func (v *NullableBroadcastStakingOperationRequest) UnmarshalJSON(src []byte) error
- func (v *NullableBroadcastStakingOperationRequest) Unset()
- type NullableBroadcastTradeRequest
- func (v NullableBroadcastTradeRequest) Get() *BroadcastTradeRequest
- func (v NullableBroadcastTradeRequest) IsSet() bool
- func (v NullableBroadcastTradeRequest) MarshalJSON() ([]byte, error)
- func (v *NullableBroadcastTradeRequest) Set(val *BroadcastTradeRequest)
- func (v *NullableBroadcastTradeRequest) UnmarshalJSON(src []byte) error
- func (v *NullableBroadcastTradeRequest) Unset()
- type NullableBroadcastTransferRequest
- func (v NullableBroadcastTransferRequest) Get() *BroadcastTransferRequest
- func (v NullableBroadcastTransferRequest) IsSet() bool
- func (v NullableBroadcastTransferRequest) MarshalJSON() ([]byte, error)
- func (v *NullableBroadcastTransferRequest) Set(val *BroadcastTransferRequest)
- func (v *NullableBroadcastTransferRequest) UnmarshalJSON(src []byte) error
- func (v *NullableBroadcastTransferRequest) Unset()
- type NullableBuildStakingOperationRequest
- func (v NullableBuildStakingOperationRequest) Get() *BuildStakingOperationRequest
- func (v NullableBuildStakingOperationRequest) IsSet() bool
- func (v NullableBuildStakingOperationRequest) MarshalJSON() ([]byte, error)
- func (v *NullableBuildStakingOperationRequest) Set(val *BuildStakingOperationRequest)
- func (v *NullableBuildStakingOperationRequest) UnmarshalJSON(src []byte) error
- func (v *NullableBuildStakingOperationRequest) Unset()
- type NullableContractEvent
- func (v NullableContractEvent) Get() *ContractEvent
- func (v NullableContractEvent) IsSet() bool
- func (v NullableContractEvent) MarshalJSON() ([]byte, error)
- func (v *NullableContractEvent) Set(val *ContractEvent)
- func (v *NullableContractEvent) UnmarshalJSON(src []byte) error
- func (v *NullableContractEvent) Unset()
- type NullableContractEventList
- func (v NullableContractEventList) Get() *ContractEventList
- func (v NullableContractEventList) IsSet() bool
- func (v NullableContractEventList) MarshalJSON() ([]byte, error)
- func (v *NullableContractEventList) Set(val *ContractEventList)
- func (v *NullableContractEventList) UnmarshalJSON(src []byte) error
- func (v *NullableContractEventList) Unset()
- type NullableContractInvocation
- func (v NullableContractInvocation) Get() *ContractInvocation
- func (v NullableContractInvocation) IsSet() bool
- func (v NullableContractInvocation) MarshalJSON() ([]byte, error)
- func (v *NullableContractInvocation) Set(val *ContractInvocation)
- func (v *NullableContractInvocation) UnmarshalJSON(src []byte) error
- func (v *NullableContractInvocation) Unset()
- type NullableContractInvocationList
- func (v NullableContractInvocationList) Get() *ContractInvocationList
- func (v NullableContractInvocationList) IsSet() bool
- func (v NullableContractInvocationList) MarshalJSON() ([]byte, error)
- func (v *NullableContractInvocationList) Set(val *ContractInvocationList)
- func (v *NullableContractInvocationList) UnmarshalJSON(src []byte) error
- func (v *NullableContractInvocationList) Unset()
- type NullableCreateAddressRequest
- func (v NullableCreateAddressRequest) Get() *CreateAddressRequest
- func (v NullableCreateAddressRequest) IsSet() bool
- func (v NullableCreateAddressRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateAddressRequest) Set(val *CreateAddressRequest)
- func (v *NullableCreateAddressRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateAddressRequest) Unset()
- type NullableCreateContractInvocationRequest
- func (v NullableCreateContractInvocationRequest) Get() *CreateContractInvocationRequest
- func (v NullableCreateContractInvocationRequest) IsSet() bool
- func (v NullableCreateContractInvocationRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateContractInvocationRequest) Set(val *CreateContractInvocationRequest)
- func (v *NullableCreateContractInvocationRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateContractInvocationRequest) Unset()
- type NullableCreatePayloadSignatureRequest
- func (v NullableCreatePayloadSignatureRequest) Get() *CreatePayloadSignatureRequest
- func (v NullableCreatePayloadSignatureRequest) IsSet() bool
- func (v NullableCreatePayloadSignatureRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreatePayloadSignatureRequest) Set(val *CreatePayloadSignatureRequest)
- func (v *NullableCreatePayloadSignatureRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreatePayloadSignatureRequest) Unset()
- type NullableCreateServerSignerRequest
- func (v NullableCreateServerSignerRequest) Get() *CreateServerSignerRequest
- func (v NullableCreateServerSignerRequest) IsSet() bool
- func (v NullableCreateServerSignerRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateServerSignerRequest) Set(val *CreateServerSignerRequest)
- func (v *NullableCreateServerSignerRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateServerSignerRequest) Unset()
- type NullableCreateSmartContractRequest
- func (v NullableCreateSmartContractRequest) Get() *CreateSmartContractRequest
- func (v NullableCreateSmartContractRequest) IsSet() bool
- func (v NullableCreateSmartContractRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateSmartContractRequest) Set(val *CreateSmartContractRequest)
- func (v *NullableCreateSmartContractRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateSmartContractRequest) Unset()
- type NullableCreateStakingOperationRequest
- func (v NullableCreateStakingOperationRequest) Get() *CreateStakingOperationRequest
- func (v NullableCreateStakingOperationRequest) IsSet() bool
- func (v NullableCreateStakingOperationRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateStakingOperationRequest) Set(val *CreateStakingOperationRequest)
- func (v *NullableCreateStakingOperationRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateStakingOperationRequest) Unset()
- type NullableCreateTradeRequest
- func (v NullableCreateTradeRequest) Get() *CreateTradeRequest
- func (v NullableCreateTradeRequest) IsSet() bool
- func (v NullableCreateTradeRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateTradeRequest) Set(val *CreateTradeRequest)
- func (v *NullableCreateTradeRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateTradeRequest) Unset()
- type NullableCreateTransferRequest
- func (v NullableCreateTransferRequest) Get() *CreateTransferRequest
- func (v NullableCreateTransferRequest) IsSet() bool
- func (v NullableCreateTransferRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateTransferRequest) Set(val *CreateTransferRequest)
- func (v *NullableCreateTransferRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateTransferRequest) Unset()
- type NullableCreateWalletRequest
- func (v NullableCreateWalletRequest) Get() *CreateWalletRequest
- func (v NullableCreateWalletRequest) IsSet() bool
- func (v NullableCreateWalletRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateWalletRequest) Set(val *CreateWalletRequest)
- func (v *NullableCreateWalletRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateWalletRequest) Unset()
- type NullableCreateWalletRequestWallet
- func (v NullableCreateWalletRequestWallet) Get() *CreateWalletRequestWallet
- func (v NullableCreateWalletRequestWallet) IsSet() bool
- func (v NullableCreateWalletRequestWallet) MarshalJSON() ([]byte, error)
- func (v *NullableCreateWalletRequestWallet) Set(val *CreateWalletRequestWallet)
- func (v *NullableCreateWalletRequestWallet) UnmarshalJSON(src []byte) error
- func (v *NullableCreateWalletRequestWallet) Unset()
- type NullableCreateWebhookRequest
- func (v NullableCreateWebhookRequest) Get() *CreateWebhookRequest
- func (v NullableCreateWebhookRequest) IsSet() bool
- func (v NullableCreateWebhookRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateWebhookRequest) Set(val *CreateWebhookRequest)
- func (v *NullableCreateWebhookRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateWebhookRequest) Unset()
- type NullableDeploySmartContractRequest
- func (v NullableDeploySmartContractRequest) Get() *DeploySmartContractRequest
- func (v NullableDeploySmartContractRequest) IsSet() bool
- func (v NullableDeploySmartContractRequest) MarshalJSON() ([]byte, error)
- func (v *NullableDeploySmartContractRequest) Set(val *DeploySmartContractRequest)
- func (v *NullableDeploySmartContractRequest) UnmarshalJSON(src []byte) error
- func (v *NullableDeploySmartContractRequest) Unset()
- type NullableERC20TransferEvent
- func (v NullableERC20TransferEvent) Get() *ERC20TransferEvent
- func (v NullableERC20TransferEvent) IsSet() bool
- func (v NullableERC20TransferEvent) MarshalJSON() ([]byte, error)
- func (v *NullableERC20TransferEvent) Set(val *ERC20TransferEvent)
- func (v *NullableERC20TransferEvent) UnmarshalJSON(src []byte) error
- func (v *NullableERC20TransferEvent) Unset()
- type NullableERC721TransferEvent
- func (v NullableERC721TransferEvent) Get() *ERC721TransferEvent
- func (v NullableERC721TransferEvent) IsSet() bool
- func (v NullableERC721TransferEvent) MarshalJSON() ([]byte, error)
- func (v *NullableERC721TransferEvent) Set(val *ERC721TransferEvent)
- func (v *NullableERC721TransferEvent) UnmarshalJSON(src []byte) error
- func (v *NullableERC721TransferEvent) Unset()
- type NullableError
- type NullableEthereumTransaction
- func (v NullableEthereumTransaction) Get() *EthereumTransaction
- func (v NullableEthereumTransaction) IsSet() bool
- func (v NullableEthereumTransaction) MarshalJSON() ([]byte, error)
- func (v *NullableEthereumTransaction) Set(val *EthereumTransaction)
- func (v *NullableEthereumTransaction) UnmarshalJSON(src []byte) error
- func (v *NullableEthereumTransaction) Unset()
- type NullableEthereumTransactionAccess
- func (v NullableEthereumTransactionAccess) Get() *EthereumTransactionAccess
- func (v NullableEthereumTransactionAccess) IsSet() bool
- func (v NullableEthereumTransactionAccess) MarshalJSON() ([]byte, error)
- func (v *NullableEthereumTransactionAccess) Set(val *EthereumTransactionAccess)
- func (v *NullableEthereumTransactionAccess) UnmarshalJSON(src []byte) error
- func (v *NullableEthereumTransactionAccess) Unset()
- type NullableEthereumTransactionAccessList
- func (v NullableEthereumTransactionAccessList) Get() *EthereumTransactionAccessList
- func (v NullableEthereumTransactionAccessList) IsSet() bool
- func (v NullableEthereumTransactionAccessList) MarshalJSON() ([]byte, error)
- func (v *NullableEthereumTransactionAccessList) Set(val *EthereumTransactionAccessList)
- func (v *NullableEthereumTransactionAccessList) UnmarshalJSON(src []byte) error
- func (v *NullableEthereumTransactionAccessList) Unset()
- type NullableEthereumTransactionFlattenedTrace
- func (v NullableEthereumTransactionFlattenedTrace) Get() *EthereumTransactionFlattenedTrace
- func (v NullableEthereumTransactionFlattenedTrace) IsSet() bool
- func (v NullableEthereumTransactionFlattenedTrace) MarshalJSON() ([]byte, error)
- func (v *NullableEthereumTransactionFlattenedTrace) Set(val *EthereumTransactionFlattenedTrace)
- func (v *NullableEthereumTransactionFlattenedTrace) UnmarshalJSON(src []byte) error
- func (v *NullableEthereumTransactionFlattenedTrace) Unset()
- type NullableEthereumValidatorMetadata
- func (v NullableEthereumValidatorMetadata) Get() *EthereumValidatorMetadata
- func (v NullableEthereumValidatorMetadata) IsSet() bool
- func (v NullableEthereumValidatorMetadata) MarshalJSON() ([]byte, error)
- func (v *NullableEthereumValidatorMetadata) Set(val *EthereumValidatorMetadata)
- func (v *NullableEthereumValidatorMetadata) UnmarshalJSON(src []byte) error
- func (v *NullableEthereumValidatorMetadata) Unset()
- type NullableFaucetTransaction
- func (v NullableFaucetTransaction) Get() *FaucetTransaction
- func (v NullableFaucetTransaction) IsSet() bool
- func (v NullableFaucetTransaction) MarshalJSON() ([]byte, error)
- func (v *NullableFaucetTransaction) Set(val *FaucetTransaction)
- func (v *NullableFaucetTransaction) UnmarshalJSON(src []byte) error
- func (v *NullableFaucetTransaction) Unset()
- type NullableFeatureSet
- type NullableFetchHistoricalStakingBalances200Response
- func (v NullableFetchHistoricalStakingBalances200Response) Get() *FetchHistoricalStakingBalances200Response
- func (v NullableFetchHistoricalStakingBalances200Response) IsSet() bool
- func (v NullableFetchHistoricalStakingBalances200Response) MarshalJSON() ([]byte, error)
- func (v *NullableFetchHistoricalStakingBalances200Response) Set(val *FetchHistoricalStakingBalances200Response)
- func (v *NullableFetchHistoricalStakingBalances200Response) UnmarshalJSON(src []byte) error
- func (v *NullableFetchHistoricalStakingBalances200Response) Unset()
- type NullableFetchStakingRewards200Response
- func (v NullableFetchStakingRewards200Response) Get() *FetchStakingRewards200Response
- func (v NullableFetchStakingRewards200Response) IsSet() bool
- func (v NullableFetchStakingRewards200Response) MarshalJSON() ([]byte, error)
- func (v *NullableFetchStakingRewards200Response) Set(val *FetchStakingRewards200Response)
- func (v *NullableFetchStakingRewards200Response) UnmarshalJSON(src []byte) error
- func (v *NullableFetchStakingRewards200Response) Unset()
- type NullableFetchStakingRewardsRequest
- func (v NullableFetchStakingRewardsRequest) Get() *FetchStakingRewardsRequest
- func (v NullableFetchStakingRewardsRequest) IsSet() bool
- func (v NullableFetchStakingRewardsRequest) MarshalJSON() ([]byte, error)
- func (v *NullableFetchStakingRewardsRequest) Set(val *FetchStakingRewardsRequest)
- func (v *NullableFetchStakingRewardsRequest) UnmarshalJSON(src []byte) error
- func (v *NullableFetchStakingRewardsRequest) Unset()
- type NullableFloat32
- type NullableFloat64
- type NullableGetStakingContextRequest
- func (v NullableGetStakingContextRequest) Get() *GetStakingContextRequest
- func (v NullableGetStakingContextRequest) IsSet() bool
- func (v NullableGetStakingContextRequest) MarshalJSON() ([]byte, error)
- func (v *NullableGetStakingContextRequest) Set(val *GetStakingContextRequest)
- func (v *NullableGetStakingContextRequest) UnmarshalJSON(src []byte) error
- func (v *NullableGetStakingContextRequest) Unset()
- type NullableHistoricalBalance
- func (v NullableHistoricalBalance) Get() *HistoricalBalance
- func (v NullableHistoricalBalance) IsSet() bool
- func (v NullableHistoricalBalance) MarshalJSON() ([]byte, error)
- func (v *NullableHistoricalBalance) Set(val *HistoricalBalance)
- func (v *NullableHistoricalBalance) UnmarshalJSON(src []byte) error
- func (v *NullableHistoricalBalance) Unset()
- type NullableInt
- type NullableInt32
- type NullableInt64
- type NullableNFTContractOptions
- func (v NullableNFTContractOptions) Get() *NFTContractOptions
- func (v NullableNFTContractOptions) IsSet() bool
- func (v NullableNFTContractOptions) MarshalJSON() ([]byte, error)
- func (v *NullableNFTContractOptions) Set(val *NFTContractOptions)
- func (v *NullableNFTContractOptions) UnmarshalJSON(src []byte) error
- func (v *NullableNFTContractOptions) Unset()
- type NullableNetwork
- type NullableNetworkIdentifier
- func (v NullableNetworkIdentifier) Get() *NetworkIdentifier
- func (v NullableNetworkIdentifier) IsSet() bool
- func (v NullableNetworkIdentifier) MarshalJSON() ([]byte, error)
- func (v *NullableNetworkIdentifier) Set(val *NetworkIdentifier)
- func (v *NullableNetworkIdentifier) UnmarshalJSON(src []byte) error
- func (v *NullableNetworkIdentifier) Unset()
- type NullablePayloadSignature
- func (v NullablePayloadSignature) Get() *PayloadSignature
- func (v NullablePayloadSignature) IsSet() bool
- func (v NullablePayloadSignature) MarshalJSON() ([]byte, error)
- func (v *NullablePayloadSignature) Set(val *PayloadSignature)
- func (v *NullablePayloadSignature) UnmarshalJSON(src []byte) error
- func (v *NullablePayloadSignature) Unset()
- type NullablePayloadSignatureList
- func (v NullablePayloadSignatureList) Get() *PayloadSignatureList
- func (v NullablePayloadSignatureList) IsSet() bool
- func (v NullablePayloadSignatureList) MarshalJSON() ([]byte, error)
- func (v *NullablePayloadSignatureList) Set(val *PayloadSignatureList)
- func (v *NullablePayloadSignatureList) UnmarshalJSON(src []byte) error
- func (v *NullablePayloadSignatureList) Unset()
- type NullableSeedCreationEvent
- func (v NullableSeedCreationEvent) Get() *SeedCreationEvent
- func (v NullableSeedCreationEvent) IsSet() bool
- func (v NullableSeedCreationEvent) MarshalJSON() ([]byte, error)
- func (v *NullableSeedCreationEvent) Set(val *SeedCreationEvent)
- func (v *NullableSeedCreationEvent) UnmarshalJSON(src []byte) error
- func (v *NullableSeedCreationEvent) Unset()
- type NullableSeedCreationEventResult
- func (v NullableSeedCreationEventResult) Get() *SeedCreationEventResult
- func (v NullableSeedCreationEventResult) IsSet() bool
- func (v NullableSeedCreationEventResult) MarshalJSON() ([]byte, error)
- func (v *NullableSeedCreationEventResult) Set(val *SeedCreationEventResult)
- func (v *NullableSeedCreationEventResult) UnmarshalJSON(src []byte) error
- func (v *NullableSeedCreationEventResult) Unset()
- type NullableServerSigner
- func (v NullableServerSigner) Get() *ServerSigner
- func (v NullableServerSigner) IsSet() bool
- func (v NullableServerSigner) MarshalJSON() ([]byte, error)
- func (v *NullableServerSigner) Set(val *ServerSigner)
- func (v *NullableServerSigner) UnmarshalJSON(src []byte) error
- func (v *NullableServerSigner) Unset()
- type NullableServerSignerEvent
- func (v NullableServerSignerEvent) Get() *ServerSignerEvent
- func (v NullableServerSignerEvent) IsSet() bool
- func (v NullableServerSignerEvent) MarshalJSON() ([]byte, error)
- func (v *NullableServerSignerEvent) Set(val *ServerSignerEvent)
- func (v *NullableServerSignerEvent) UnmarshalJSON(src []byte) error
- func (v *NullableServerSignerEvent) Unset()
- type NullableServerSignerEventEvent
- func (v NullableServerSignerEventEvent) Get() *ServerSignerEventEvent
- func (v NullableServerSignerEventEvent) IsSet() bool
- func (v NullableServerSignerEventEvent) MarshalJSON() ([]byte, error)
- func (v *NullableServerSignerEventEvent) Set(val *ServerSignerEventEvent)
- func (v *NullableServerSignerEventEvent) UnmarshalJSON(src []byte) error
- func (v *NullableServerSignerEventEvent) Unset()
- type NullableServerSignerEventList
- func (v NullableServerSignerEventList) Get() *ServerSignerEventList
- func (v NullableServerSignerEventList) IsSet() bool
- func (v NullableServerSignerEventList) MarshalJSON() ([]byte, error)
- func (v *NullableServerSignerEventList) Set(val *ServerSignerEventList)
- func (v *NullableServerSignerEventList) UnmarshalJSON(src []byte) error
- func (v *NullableServerSignerEventList) Unset()
- type NullableServerSignerList
- func (v NullableServerSignerList) Get() *ServerSignerList
- func (v NullableServerSignerList) IsSet() bool
- func (v NullableServerSignerList) MarshalJSON() ([]byte, error)
- func (v *NullableServerSignerList) Set(val *ServerSignerList)
- func (v *NullableServerSignerList) UnmarshalJSON(src []byte) error
- func (v *NullableServerSignerList) Unset()
- type NullableSignatureCreationEvent
- func (v NullableSignatureCreationEvent) Get() *SignatureCreationEvent
- func (v NullableSignatureCreationEvent) IsSet() bool
- func (v NullableSignatureCreationEvent) MarshalJSON() ([]byte, error)
- func (v *NullableSignatureCreationEvent) Set(val *SignatureCreationEvent)
- func (v *NullableSignatureCreationEvent) UnmarshalJSON(src []byte) error
- func (v *NullableSignatureCreationEvent) Unset()
- type NullableSignatureCreationEventResult
- func (v NullableSignatureCreationEventResult) Get() *SignatureCreationEventResult
- func (v NullableSignatureCreationEventResult) IsSet() bool
- func (v NullableSignatureCreationEventResult) MarshalJSON() ([]byte, error)
- func (v *NullableSignatureCreationEventResult) Set(val *SignatureCreationEventResult)
- func (v *NullableSignatureCreationEventResult) UnmarshalJSON(src []byte) error
- func (v *NullableSignatureCreationEventResult) Unset()
- type NullableSignedVoluntaryExitMessageMetadata
- func (v NullableSignedVoluntaryExitMessageMetadata) Get() *SignedVoluntaryExitMessageMetadata
- func (v NullableSignedVoluntaryExitMessageMetadata) IsSet() bool
- func (v NullableSignedVoluntaryExitMessageMetadata) MarshalJSON() ([]byte, error)
- func (v *NullableSignedVoluntaryExitMessageMetadata) Set(val *SignedVoluntaryExitMessageMetadata)
- func (v *NullableSignedVoluntaryExitMessageMetadata) UnmarshalJSON(src []byte) error
- func (v *NullableSignedVoluntaryExitMessageMetadata) Unset()
- type NullableSmartContract
- func (v NullableSmartContract) Get() *SmartContract
- func (v NullableSmartContract) IsSet() bool
- func (v NullableSmartContract) MarshalJSON() ([]byte, error)
- func (v *NullableSmartContract) Set(val *SmartContract)
- func (v *NullableSmartContract) UnmarshalJSON(src []byte) error
- func (v *NullableSmartContract) Unset()
- type NullableSmartContractList
- func (v NullableSmartContractList) Get() *SmartContractList
- func (v NullableSmartContractList) IsSet() bool
- func (v NullableSmartContractList) MarshalJSON() ([]byte, error)
- func (v *NullableSmartContractList) Set(val *SmartContractList)
- func (v *NullableSmartContractList) UnmarshalJSON(src []byte) error
- func (v *NullableSmartContractList) Unset()
- type NullableSmartContractOptions
- func (v NullableSmartContractOptions) Get() *SmartContractOptions
- func (v NullableSmartContractOptions) IsSet() bool
- func (v NullableSmartContractOptions) MarshalJSON() ([]byte, error)
- func (v *NullableSmartContractOptions) Set(val *SmartContractOptions)
- func (v *NullableSmartContractOptions) UnmarshalJSON(src []byte) error
- func (v *NullableSmartContractOptions) Unset()
- type NullableSmartContractType
- func (v NullableSmartContractType) Get() *SmartContractType
- func (v NullableSmartContractType) IsSet() bool
- func (v NullableSmartContractType) MarshalJSON() ([]byte, error)
- func (v *NullableSmartContractType) Set(val *SmartContractType)
- func (v *NullableSmartContractType) UnmarshalJSON(src []byte) error
- func (v *NullableSmartContractType) Unset()
- type NullableSponsoredSend
- func (v NullableSponsoredSend) Get() *SponsoredSend
- func (v NullableSponsoredSend) IsSet() bool
- func (v NullableSponsoredSend) MarshalJSON() ([]byte, error)
- func (v *NullableSponsoredSend) Set(val *SponsoredSend)
- func (v *NullableSponsoredSend) UnmarshalJSON(src []byte) error
- func (v *NullableSponsoredSend) Unset()
- type NullableStakingBalance
- func (v NullableStakingBalance) Get() *StakingBalance
- func (v NullableStakingBalance) IsSet() bool
- func (v NullableStakingBalance) MarshalJSON() ([]byte, error)
- func (v *NullableStakingBalance) Set(val *StakingBalance)
- func (v *NullableStakingBalance) UnmarshalJSON(src []byte) error
- func (v *NullableStakingBalance) Unset()
- type NullableStakingContext
- func (v NullableStakingContext) Get() *StakingContext
- func (v NullableStakingContext) IsSet() bool
- func (v NullableStakingContext) MarshalJSON() ([]byte, error)
- func (v *NullableStakingContext) Set(val *StakingContext)
- func (v *NullableStakingContext) UnmarshalJSON(src []byte) error
- func (v *NullableStakingContext) Unset()
- type NullableStakingContextContext
- func (v NullableStakingContextContext) Get() *StakingContextContext
- func (v NullableStakingContextContext) IsSet() bool
- func (v NullableStakingContextContext) MarshalJSON() ([]byte, error)
- func (v *NullableStakingContextContext) Set(val *StakingContextContext)
- func (v *NullableStakingContextContext) UnmarshalJSON(src []byte) error
- func (v *NullableStakingContextContext) Unset()
- type NullableStakingOperation
- func (v NullableStakingOperation) Get() *StakingOperation
- func (v NullableStakingOperation) IsSet() bool
- func (v NullableStakingOperation) MarshalJSON() ([]byte, error)
- func (v *NullableStakingOperation) Set(val *StakingOperation)
- func (v *NullableStakingOperation) UnmarshalJSON(src []byte) error
- func (v *NullableStakingOperation) Unset()
- type NullableStakingOperationMetadata
- func (v NullableStakingOperationMetadata) Get() *StakingOperationMetadata
- func (v NullableStakingOperationMetadata) IsSet() bool
- func (v NullableStakingOperationMetadata) MarshalJSON() ([]byte, error)
- func (v *NullableStakingOperationMetadata) Set(val *StakingOperationMetadata)
- func (v *NullableStakingOperationMetadata) UnmarshalJSON(src []byte) error
- func (v *NullableStakingOperationMetadata) Unset()
- type NullableStakingReward
- func (v NullableStakingReward) Get() *StakingReward
- func (v NullableStakingReward) IsSet() bool
- func (v NullableStakingReward) MarshalJSON() ([]byte, error)
- func (v *NullableStakingReward) Set(val *StakingReward)
- func (v *NullableStakingReward) UnmarshalJSON(src []byte) error
- func (v *NullableStakingReward) Unset()
- type NullableStakingRewardFormat
- func (v NullableStakingRewardFormat) Get() *StakingRewardFormat
- func (v NullableStakingRewardFormat) IsSet() bool
- func (v NullableStakingRewardFormat) MarshalJSON() ([]byte, error)
- func (v *NullableStakingRewardFormat) Set(val *StakingRewardFormat)
- func (v *NullableStakingRewardFormat) UnmarshalJSON(src []byte) error
- func (v *NullableStakingRewardFormat) Unset()
- type NullableStakingRewardUSDValue
- func (v NullableStakingRewardUSDValue) Get() *StakingRewardUSDValue
- func (v NullableStakingRewardUSDValue) IsSet() bool
- func (v NullableStakingRewardUSDValue) MarshalJSON() ([]byte, error)
- func (v *NullableStakingRewardUSDValue) Set(val *StakingRewardUSDValue)
- func (v *NullableStakingRewardUSDValue) UnmarshalJSON(src []byte) error
- func (v *NullableStakingRewardUSDValue) Unset()
- type NullableString
- type NullableTime
- type NullableTokenContractOptions
- func (v NullableTokenContractOptions) Get() *TokenContractOptions
- func (v NullableTokenContractOptions) IsSet() bool
- func (v NullableTokenContractOptions) MarshalJSON() ([]byte, error)
- func (v *NullableTokenContractOptions) Set(val *TokenContractOptions)
- func (v *NullableTokenContractOptions) UnmarshalJSON(src []byte) error
- func (v *NullableTokenContractOptions) Unset()
- type NullableTrade
- type NullableTradeList
- type NullableTransaction
- func (v NullableTransaction) Get() *Transaction
- func (v NullableTransaction) IsSet() bool
- func (v NullableTransaction) MarshalJSON() ([]byte, error)
- func (v *NullableTransaction) Set(val *Transaction)
- func (v *NullableTransaction) UnmarshalJSON(src []byte) error
- func (v *NullableTransaction) Unset()
- type NullableTransactionContent
- func (v NullableTransactionContent) Get() *TransactionContent
- func (v NullableTransactionContent) IsSet() bool
- func (v NullableTransactionContent) MarshalJSON() ([]byte, error)
- func (v *NullableTransactionContent) Set(val *TransactionContent)
- func (v *NullableTransactionContent) UnmarshalJSON(src []byte) error
- func (v *NullableTransactionContent) Unset()
- type NullableTransactionType
- func (v NullableTransactionType) Get() *TransactionType
- func (v NullableTransactionType) IsSet() bool
- func (v NullableTransactionType) MarshalJSON() ([]byte, error)
- func (v *NullableTransactionType) Set(val *TransactionType)
- func (v *NullableTransactionType) UnmarshalJSON(src []byte) error
- func (v *NullableTransactionType) Unset()
- type NullableTransfer
- type NullableTransferList
- func (v NullableTransferList) Get() *TransferList
- func (v NullableTransferList) IsSet() bool
- func (v NullableTransferList) MarshalJSON() ([]byte, error)
- func (v *NullableTransferList) Set(val *TransferList)
- func (v *NullableTransferList) UnmarshalJSON(src []byte) error
- func (v *NullableTransferList) Unset()
- type NullableUpdateWebhookRequest
- func (v NullableUpdateWebhookRequest) Get() *UpdateWebhookRequest
- func (v NullableUpdateWebhookRequest) IsSet() bool
- func (v NullableUpdateWebhookRequest) MarshalJSON() ([]byte, error)
- func (v *NullableUpdateWebhookRequest) Set(val *UpdateWebhookRequest)
- func (v *NullableUpdateWebhookRequest) UnmarshalJSON(src []byte) error
- func (v *NullableUpdateWebhookRequest) Unset()
- type NullableUser
- type NullableValidator
- type NullableValidatorDetails
- func (v NullableValidatorDetails) Get() *ValidatorDetails
- func (v NullableValidatorDetails) IsSet() bool
- func (v NullableValidatorDetails) MarshalJSON() ([]byte, error)
- func (v *NullableValidatorDetails) Set(val *ValidatorDetails)
- func (v *NullableValidatorDetails) UnmarshalJSON(src []byte) error
- func (v *NullableValidatorDetails) Unset()
- type NullableValidatorList
- func (v NullableValidatorList) Get() *ValidatorList
- func (v NullableValidatorList) IsSet() bool
- func (v NullableValidatorList) MarshalJSON() ([]byte, error)
- func (v *NullableValidatorList) Set(val *ValidatorList)
- func (v *NullableValidatorList) UnmarshalJSON(src []byte) error
- func (v *NullableValidatorList) Unset()
- type NullableValidatorStatus
- func (v NullableValidatorStatus) Get() *ValidatorStatus
- func (v NullableValidatorStatus) IsSet() bool
- func (v NullableValidatorStatus) MarshalJSON() ([]byte, error)
- func (v *NullableValidatorStatus) Set(val *ValidatorStatus)
- func (v *NullableValidatorStatus) UnmarshalJSON(src []byte) error
- func (v *NullableValidatorStatus) Unset()
- type NullableWallet
- type NullableWalletList
- type NullableWebhook
- type NullableWebhookEventFilter
- func (v NullableWebhookEventFilter) Get() *WebhookEventFilter
- func (v NullableWebhookEventFilter) IsSet() bool
- func (v NullableWebhookEventFilter) MarshalJSON() ([]byte, error)
- func (v *NullableWebhookEventFilter) Set(val *WebhookEventFilter)
- func (v *NullableWebhookEventFilter) UnmarshalJSON(src []byte) error
- func (v *NullableWebhookEventFilter) Unset()
- type NullableWebhookEventType
- func (v NullableWebhookEventType) Get() *WebhookEventType
- func (v NullableWebhookEventType) IsSet() bool
- func (v NullableWebhookEventType) MarshalJSON() ([]byte, error)
- func (v *NullableWebhookEventType) Set(val *WebhookEventType)
- func (v *NullableWebhookEventType) UnmarshalJSON(src []byte) error
- func (v *NullableWebhookEventType) Unset()
- type NullableWebhookEventTypeFilter
- func (v NullableWebhookEventTypeFilter) Get() *WebhookEventTypeFilter
- func (v NullableWebhookEventTypeFilter) IsSet() bool
- func (v NullableWebhookEventTypeFilter) MarshalJSON() ([]byte, error)
- func (v *NullableWebhookEventTypeFilter) Set(val *WebhookEventTypeFilter)
- func (v *NullableWebhookEventTypeFilter) UnmarshalJSON(src []byte) error
- func (v *NullableWebhookEventTypeFilter) Unset()
- type NullableWebhookList
- func (v NullableWebhookList) Get() *WebhookList
- func (v NullableWebhookList) IsSet() bool
- func (v NullableWebhookList) MarshalJSON() ([]byte, error)
- func (v *NullableWebhookList) Set(val *WebhookList)
- func (v *NullableWebhookList) UnmarshalJSON(src []byte) error
- func (v *NullableWebhookList) Unset()
- type NullableWebhookWalletActivityFilter
- func (v NullableWebhookWalletActivityFilter) Get() *WebhookWalletActivityFilter
- func (v NullableWebhookWalletActivityFilter) IsSet() bool
- func (v NullableWebhookWalletActivityFilter) MarshalJSON() ([]byte, error)
- func (v *NullableWebhookWalletActivityFilter) Set(val *WebhookWalletActivityFilter)
- func (v *NullableWebhookWalletActivityFilter) UnmarshalJSON(src []byte) error
- func (v *NullableWebhookWalletActivityFilter) Unset()
- type PayloadSignature
- func (o *PayloadSignature) GetAddressId() string
- func (o *PayloadSignature) GetAddressIdOk() (*string, bool)
- func (o *PayloadSignature) GetPayloadSignatureId() string
- func (o *PayloadSignature) GetPayloadSignatureIdOk() (*string, bool)
- func (o *PayloadSignature) GetSignature() string
- func (o *PayloadSignature) GetSignatureOk() (*string, bool)
- func (o *PayloadSignature) GetStatus() string
- func (o *PayloadSignature) GetStatusOk() (*string, bool)
- func (o *PayloadSignature) GetUnsignedPayload() string
- func (o *PayloadSignature) GetUnsignedPayloadOk() (*string, bool)
- func (o *PayloadSignature) GetWalletId() string
- func (o *PayloadSignature) GetWalletIdOk() (*string, bool)
- func (o *PayloadSignature) HasSignature() bool
- func (o PayloadSignature) MarshalJSON() ([]byte, error)
- func (o *PayloadSignature) SetAddressId(v string)
- func (o *PayloadSignature) SetPayloadSignatureId(v string)
- func (o *PayloadSignature) SetSignature(v string)
- func (o *PayloadSignature) SetStatus(v string)
- func (o *PayloadSignature) SetUnsignedPayload(v string)
- func (o *PayloadSignature) SetWalletId(v string)
- func (o PayloadSignature) ToMap() (map[string]interface{}, error)
- func (o *PayloadSignature) UnmarshalJSON(data []byte) (err error)
- type PayloadSignatureList
- func (o *PayloadSignatureList) GetData() []PayloadSignature
- func (o *PayloadSignatureList) GetDataOk() ([]PayloadSignature, bool)
- func (o *PayloadSignatureList) GetHasMore() bool
- func (o *PayloadSignatureList) GetHasMoreOk() (*bool, bool)
- func (o *PayloadSignatureList) GetNextPage() string
- func (o *PayloadSignatureList) GetNextPageOk() (*string, bool)
- func (o *PayloadSignatureList) GetTotalCount() int32
- func (o *PayloadSignatureList) GetTotalCountOk() (*int32, bool)
- func (o PayloadSignatureList) MarshalJSON() ([]byte, error)
- func (o *PayloadSignatureList) SetData(v []PayloadSignature)
- func (o *PayloadSignatureList) SetHasMore(v bool)
- func (o *PayloadSignatureList) SetNextPage(v string)
- func (o *PayloadSignatureList) SetTotalCount(v int32)
- func (o PayloadSignatureList) ToMap() (map[string]interface{}, error)
- func (o *PayloadSignatureList) UnmarshalJSON(data []byte) (err error)
- type SeedCreationEvent
- func (o *SeedCreationEvent) GetWalletId() string
- func (o *SeedCreationEvent) GetWalletIdOk() (*string, bool)
- func (o *SeedCreationEvent) GetWalletUserId() string
- func (o *SeedCreationEvent) GetWalletUserIdOk() (*string, bool)
- func (o SeedCreationEvent) MarshalJSON() ([]byte, error)
- func (o *SeedCreationEvent) SetWalletId(v string)
- func (o *SeedCreationEvent) SetWalletUserId(v string)
- func (o SeedCreationEvent) ToMap() (map[string]interface{}, error)
- func (o *SeedCreationEvent) UnmarshalJSON(data []byte) (err error)
- type SeedCreationEventResult
- func (o *SeedCreationEventResult) GetExtendedPublicKey() string
- func (o *SeedCreationEventResult) GetExtendedPublicKeyOk() (*string, bool)
- func (o *SeedCreationEventResult) GetSeedId() string
- func (o *SeedCreationEventResult) GetSeedIdOk() (*string, bool)
- func (o *SeedCreationEventResult) GetWalletId() string
- func (o *SeedCreationEventResult) GetWalletIdOk() (*string, bool)
- func (o *SeedCreationEventResult) GetWalletUserId() string
- func (o *SeedCreationEventResult) GetWalletUserIdOk() (*string, bool)
- func (o SeedCreationEventResult) MarshalJSON() ([]byte, error)
- func (o *SeedCreationEventResult) SetExtendedPublicKey(v string)
- func (o *SeedCreationEventResult) SetSeedId(v string)
- func (o *SeedCreationEventResult) SetWalletId(v string)
- func (o *SeedCreationEventResult) SetWalletUserId(v string)
- func (o SeedCreationEventResult) ToMap() (map[string]interface{}, error)
- func (o *SeedCreationEventResult) UnmarshalJSON(data []byte) (err error)
- type ServerConfiguration
- type ServerConfigurations
- type ServerSigner
- func (o *ServerSigner) GetIsMpc() bool
- func (o *ServerSigner) GetIsMpcOk() (*bool, bool)
- func (o *ServerSigner) GetServerSignerId() string
- func (o *ServerSigner) GetServerSignerIdOk() (*string, bool)
- func (o *ServerSigner) GetWallets() []string
- func (o *ServerSigner) GetWalletsOk() ([]string, bool)
- func (o *ServerSigner) HasWallets() bool
- func (o ServerSigner) MarshalJSON() ([]byte, error)
- func (o *ServerSigner) SetIsMpc(v bool)
- func (o *ServerSigner) SetServerSignerId(v string)
- func (o *ServerSigner) SetWallets(v []string)
- func (o ServerSigner) ToMap() (map[string]interface{}, error)
- func (o *ServerSigner) UnmarshalJSON(data []byte) (err error)
- type ServerSignerEvent
- func (o *ServerSignerEvent) GetEvent() ServerSignerEventEvent
- func (o *ServerSignerEvent) GetEventOk() (*ServerSignerEventEvent, bool)
- func (o *ServerSignerEvent) GetServerSignerId() string
- func (o *ServerSignerEvent) GetServerSignerIdOk() (*string, bool)
- func (o ServerSignerEvent) MarshalJSON() ([]byte, error)
- func (o *ServerSignerEvent) SetEvent(v ServerSignerEventEvent)
- func (o *ServerSignerEvent) SetServerSignerId(v string)
- func (o ServerSignerEvent) ToMap() (map[string]interface{}, error)
- func (o *ServerSignerEvent) UnmarshalJSON(data []byte) (err error)
- type ServerSignerEventEvent
- type ServerSignerEventList
- func (o *ServerSignerEventList) GetData() []ServerSignerEvent
- func (o *ServerSignerEventList) GetDataOk() ([]ServerSignerEvent, bool)
- func (o *ServerSignerEventList) GetHasMore() bool
- func (o *ServerSignerEventList) GetHasMoreOk() (*bool, bool)
- func (o *ServerSignerEventList) GetNextPage() string
- func (o *ServerSignerEventList) GetNextPageOk() (*string, bool)
- func (o *ServerSignerEventList) GetTotalCount() int32
- func (o *ServerSignerEventList) GetTotalCountOk() (*int32, bool)
- func (o ServerSignerEventList) MarshalJSON() ([]byte, error)
- func (o *ServerSignerEventList) SetData(v []ServerSignerEvent)
- func (o *ServerSignerEventList) SetHasMore(v bool)
- func (o *ServerSignerEventList) SetNextPage(v string)
- func (o *ServerSignerEventList) SetTotalCount(v int32)
- func (o ServerSignerEventList) ToMap() (map[string]interface{}, error)
- func (o *ServerSignerEventList) UnmarshalJSON(data []byte) (err error)
- type ServerSignerList
- func (o *ServerSignerList) GetData() []ServerSigner
- func (o *ServerSignerList) GetDataOk() ([]ServerSigner, bool)
- func (o *ServerSignerList) GetHasMore() bool
- func (o *ServerSignerList) GetHasMoreOk() (*bool, bool)
- func (o *ServerSignerList) GetNextPage() string
- func (o *ServerSignerList) GetNextPageOk() (*string, bool)
- func (o *ServerSignerList) GetTotalCount() int32
- func (o *ServerSignerList) GetTotalCountOk() (*int32, bool)
- func (o ServerSignerList) MarshalJSON() ([]byte, error)
- func (o *ServerSignerList) SetData(v []ServerSigner)
- func (o *ServerSignerList) SetHasMore(v bool)
- func (o *ServerSignerList) SetNextPage(v string)
- func (o *ServerSignerList) SetTotalCount(v int32)
- func (o ServerSignerList) ToMap() (map[string]interface{}, error)
- func (o *ServerSignerList) UnmarshalJSON(data []byte) (err error)
- type ServerSignersAPI
- type ServerSignersAPIService
- func (a *ServerSignersAPIService) CreateServerSigner(ctx context.Context) ApiCreateServerSignerRequest
- func (a *ServerSignersAPIService) CreateServerSignerExecute(r ApiCreateServerSignerRequest) (*ServerSigner, *http.Response, error)
- func (a *ServerSignersAPIService) GetServerSigner(ctx context.Context, serverSignerId string) ApiGetServerSignerRequest
- func (a *ServerSignersAPIService) GetServerSignerExecute(r ApiGetServerSignerRequest) (*ServerSigner, *http.Response, error)
- func (a *ServerSignersAPIService) ListServerSignerEvents(ctx context.Context, serverSignerId string) ApiListServerSignerEventsRequest
- func (a *ServerSignersAPIService) ListServerSignerEventsExecute(r ApiListServerSignerEventsRequest) (*ServerSignerEventList, *http.Response, error)
- func (a *ServerSignersAPIService) ListServerSigners(ctx context.Context) ApiListServerSignersRequest
- func (a *ServerSignersAPIService) ListServerSignersExecute(r ApiListServerSignersRequest) (*ServerSignerList, *http.Response, error)
- func (a *ServerSignersAPIService) SubmitServerSignerSeedEventResult(ctx context.Context, serverSignerId string) ApiSubmitServerSignerSeedEventResultRequest
- func (a *ServerSignersAPIService) SubmitServerSignerSeedEventResultExecute(r ApiSubmitServerSignerSeedEventResultRequest) (*SeedCreationEventResult, *http.Response, error)
- func (a *ServerSignersAPIService) SubmitServerSignerSignatureEventResult(ctx context.Context, serverSignerId string) ApiSubmitServerSignerSignatureEventResultRequest
- func (a *ServerSignersAPIService) SubmitServerSignerSignatureEventResultExecute(r ApiSubmitServerSignerSignatureEventResultRequest) (*SignatureCreationEventResult, *http.Response, error)
- type ServerVariable
- type SignatureCreationEvent
- func (o *SignatureCreationEvent) GetAddressId() string
- func (o *SignatureCreationEvent) GetAddressIdOk() (*string, bool)
- func (o *SignatureCreationEvent) GetAddressIndex() int32
- func (o *SignatureCreationEvent) GetAddressIndexOk() (*int32, bool)
- func (o *SignatureCreationEvent) GetSeedId() string
- func (o *SignatureCreationEvent) GetSeedIdOk() (*string, bool)
- func (o *SignatureCreationEvent) GetSigningPayload() string
- func (o *SignatureCreationEvent) GetSigningPayloadOk() (*string, bool)
- func (o *SignatureCreationEvent) GetTransactionId() string
- func (o *SignatureCreationEvent) GetTransactionIdOk() (*string, bool)
- func (o *SignatureCreationEvent) GetTransactionType() TransactionType
- func (o *SignatureCreationEvent) GetTransactionTypeOk() (*TransactionType, bool)
- func (o *SignatureCreationEvent) GetWalletId() string
- func (o *SignatureCreationEvent) GetWalletIdOk() (*string, bool)
- func (o *SignatureCreationEvent) GetWalletUserId() string
- func (o *SignatureCreationEvent) GetWalletUserIdOk() (*string, bool)
- func (o SignatureCreationEvent) MarshalJSON() ([]byte, error)
- func (o *SignatureCreationEvent) SetAddressId(v string)
- func (o *SignatureCreationEvent) SetAddressIndex(v int32)
- func (o *SignatureCreationEvent) SetSeedId(v string)
- func (o *SignatureCreationEvent) SetSigningPayload(v string)
- func (o *SignatureCreationEvent) SetTransactionId(v string)
- func (o *SignatureCreationEvent) SetTransactionType(v TransactionType)
- func (o *SignatureCreationEvent) SetWalletId(v string)
- func (o *SignatureCreationEvent) SetWalletUserId(v string)
- func (o SignatureCreationEvent) ToMap() (map[string]interface{}, error)
- func (o *SignatureCreationEvent) UnmarshalJSON(data []byte) (err error)
- type SignatureCreationEventResult
- func (o *SignatureCreationEventResult) GetAddressId() string
- func (o *SignatureCreationEventResult) GetAddressIdOk() (*string, bool)
- func (o *SignatureCreationEventResult) GetSignature() string
- func (o *SignatureCreationEventResult) GetSignatureOk() (*string, bool)
- func (o *SignatureCreationEventResult) GetTransactionId() string
- func (o *SignatureCreationEventResult) GetTransactionIdOk() (*string, bool)
- func (o *SignatureCreationEventResult) GetTransactionType() TransactionType
- func (o *SignatureCreationEventResult) GetTransactionTypeOk() (*TransactionType, bool)
- func (o *SignatureCreationEventResult) GetWalletId() string
- func (o *SignatureCreationEventResult) GetWalletIdOk() (*string, bool)
- func (o *SignatureCreationEventResult) GetWalletUserId() string
- func (o *SignatureCreationEventResult) GetWalletUserIdOk() (*string, bool)
- func (o SignatureCreationEventResult) MarshalJSON() ([]byte, error)
- func (o *SignatureCreationEventResult) SetAddressId(v string)
- func (o *SignatureCreationEventResult) SetSignature(v string)
- func (o *SignatureCreationEventResult) SetTransactionId(v string)
- func (o *SignatureCreationEventResult) SetTransactionType(v TransactionType)
- func (o *SignatureCreationEventResult) SetWalletId(v string)
- func (o *SignatureCreationEventResult) SetWalletUserId(v string)
- func (o SignatureCreationEventResult) ToMap() (map[string]interface{}, error)
- func (o *SignatureCreationEventResult) UnmarshalJSON(data []byte) (err error)
- type SignedVoluntaryExitMessageMetadata
- func (o *SignedVoluntaryExitMessageMetadata) GetFork() string
- func (o *SignedVoluntaryExitMessageMetadata) GetForkOk() (*string, bool)
- func (o *SignedVoluntaryExitMessageMetadata) GetSignedVoluntaryExit() string
- func (o *SignedVoluntaryExitMessageMetadata) GetSignedVoluntaryExitOk() (*string, bool)
- func (o *SignedVoluntaryExitMessageMetadata) GetValidatorPubKey() string
- func (o *SignedVoluntaryExitMessageMetadata) GetValidatorPubKeyOk() (*string, bool)
- func (o SignedVoluntaryExitMessageMetadata) MarshalJSON() ([]byte, error)
- func (o *SignedVoluntaryExitMessageMetadata) SetFork(v string)
- func (o *SignedVoluntaryExitMessageMetadata) SetSignedVoluntaryExit(v string)
- func (o *SignedVoluntaryExitMessageMetadata) SetValidatorPubKey(v string)
- func (o SignedVoluntaryExitMessageMetadata) ToMap() (map[string]interface{}, error)
- func (o *SignedVoluntaryExitMessageMetadata) UnmarshalJSON(data []byte) (err error)
- type SmartContract
- func (o *SmartContract) GetAbi() string
- func (o *SmartContract) GetAbiOk() (*string, bool)
- func (o *SmartContract) GetContractAddress() string
- func (o *SmartContract) GetContractAddressOk() (*string, bool)
- func (o *SmartContract) GetDeployerAddress() string
- func (o *SmartContract) GetDeployerAddressOk() (*string, bool)
- func (o *SmartContract) GetNetworkId() string
- func (o *SmartContract) GetNetworkIdOk() (*string, bool)
- func (o *SmartContract) GetOptions() SmartContractOptions
- func (o *SmartContract) GetOptionsOk() (*SmartContractOptions, bool)
- func (o *SmartContract) GetSmartContractId() string
- func (o *SmartContract) GetSmartContractIdOk() (*string, bool)
- func (o *SmartContract) GetTransaction() Transaction
- func (o *SmartContract) GetTransactionOk() (*Transaction, bool)
- func (o *SmartContract) GetType() SmartContractType
- func (o *SmartContract) GetTypeOk() (*SmartContractType, bool)
- func (o *SmartContract) GetWalletId() string
- func (o *SmartContract) GetWalletIdOk() (*string, bool)
- func (o SmartContract) MarshalJSON() ([]byte, error)
- func (o *SmartContract) SetAbi(v string)
- func (o *SmartContract) SetContractAddress(v string)
- func (o *SmartContract) SetDeployerAddress(v string)
- func (o *SmartContract) SetNetworkId(v string)
- func (o *SmartContract) SetOptions(v SmartContractOptions)
- func (o *SmartContract) SetSmartContractId(v string)
- func (o *SmartContract) SetTransaction(v Transaction)
- func (o *SmartContract) SetType(v SmartContractType)
- func (o *SmartContract) SetWalletId(v string)
- func (o SmartContract) ToMap() (map[string]interface{}, error)
- func (o *SmartContract) UnmarshalJSON(data []byte) (err error)
- type SmartContractList
- func (o *SmartContractList) GetData() []SmartContract
- func (o *SmartContractList) GetDataOk() ([]SmartContract, bool)
- func (o *SmartContractList) GetHasMore() bool
- func (o *SmartContractList) GetHasMoreOk() (*bool, bool)
- func (o *SmartContractList) GetNextPage() string
- func (o *SmartContractList) GetNextPageOk() (*string, bool)
- func (o SmartContractList) MarshalJSON() ([]byte, error)
- func (o *SmartContractList) SetData(v []SmartContract)
- func (o *SmartContractList) SetHasMore(v bool)
- func (o *SmartContractList) SetNextPage(v string)
- func (o SmartContractList) ToMap() (map[string]interface{}, error)
- func (o *SmartContractList) UnmarshalJSON(data []byte) (err error)
- type SmartContractOptions
- type SmartContractType
- type SmartContractsAPI
- type SmartContractsAPIService
- func (a *SmartContractsAPIService) CreateSmartContract(ctx context.Context, walletId string, addressId string) ApiCreateSmartContractRequest
- func (a *SmartContractsAPIService) CreateSmartContractExecute(r ApiCreateSmartContractRequest) (*SmartContract, *http.Response, error)
- func (a *SmartContractsAPIService) DeploySmartContract(ctx context.Context, walletId string, addressId string, smartContractId string) ApiDeploySmartContractRequest
- func (a *SmartContractsAPIService) DeploySmartContractExecute(r ApiDeploySmartContractRequest) (*SmartContract, *http.Response, error)
- func (a *SmartContractsAPIService) GetSmartContract(ctx context.Context, walletId string, addressId string, smartContractId string) ApiGetSmartContractRequest
- func (a *SmartContractsAPIService) GetSmartContractExecute(r ApiGetSmartContractRequest) (*SmartContract, *http.Response, error)
- func (a *SmartContractsAPIService) ListSmartContracts(ctx context.Context, walletId string, addressId string) ApiListSmartContractsRequest
- func (a *SmartContractsAPIService) ListSmartContractsExecute(r ApiListSmartContractsRequest) (*SmartContractList, *http.Response, error)
- type SponsoredSend
- func (o *SponsoredSend) GetRawTypedData() string
- func (o *SponsoredSend) GetRawTypedDataOk() (*string, bool)
- func (o *SponsoredSend) GetSignature() string
- func (o *SponsoredSend) GetSignatureOk() (*string, bool)
- func (o *SponsoredSend) GetStatus() string
- func (o *SponsoredSend) GetStatusOk() (*string, bool)
- func (o *SponsoredSend) GetToAddressId() string
- func (o *SponsoredSend) GetToAddressIdOk() (*string, bool)
- func (o *SponsoredSend) GetTransactionHash() string
- func (o *SponsoredSend) GetTransactionHashOk() (*string, bool)
- func (o *SponsoredSend) GetTransactionLink() string
- func (o *SponsoredSend) GetTransactionLinkOk() (*string, bool)
- func (o *SponsoredSend) GetTypedDataHash() string
- func (o *SponsoredSend) GetTypedDataHashOk() (*string, bool)
- func (o *SponsoredSend) HasSignature() bool
- func (o *SponsoredSend) HasTransactionHash() bool
- func (o *SponsoredSend) HasTransactionLink() bool
- func (o SponsoredSend) MarshalJSON() ([]byte, error)
- func (o *SponsoredSend) SetRawTypedData(v string)
- func (o *SponsoredSend) SetSignature(v string)
- func (o *SponsoredSend) SetStatus(v string)
- func (o *SponsoredSend) SetToAddressId(v string)
- func (o *SponsoredSend) SetTransactionHash(v string)
- func (o *SponsoredSend) SetTransactionLink(v string)
- func (o *SponsoredSend) SetTypedDataHash(v string)
- func (o SponsoredSend) ToMap() (map[string]interface{}, error)
- func (o *SponsoredSend) UnmarshalJSON(data []byte) (err error)
- type StakeAPI
- type StakeAPIService
- func (a *StakeAPIService) BuildStakingOperation(ctx context.Context) ApiBuildStakingOperationRequest
- func (a *StakeAPIService) BuildStakingOperationExecute(r ApiBuildStakingOperationRequest) (*StakingOperation, *http.Response, error)
- func (a *StakeAPIService) FetchHistoricalStakingBalances(ctx context.Context, networkId string, addressId string) ApiFetchHistoricalStakingBalancesRequest
- func (a *StakeAPIService) FetchHistoricalStakingBalancesExecute(r ApiFetchHistoricalStakingBalancesRequest) (*FetchHistoricalStakingBalances200Response, *http.Response, error)
- func (a *StakeAPIService) FetchStakingRewards(ctx context.Context) ApiFetchStakingRewardsRequest
- func (a *StakeAPIService) FetchStakingRewardsExecute(r ApiFetchStakingRewardsRequest) (*FetchStakingRewards200Response, *http.Response, error)
- func (a *StakeAPIService) GetExternalStakingOperation(ctx context.Context, networkId string, addressId string, ...) ApiGetExternalStakingOperationRequest
- func (a *StakeAPIService) GetExternalStakingOperationExecute(r ApiGetExternalStakingOperationRequest) (*StakingOperation, *http.Response, error)
- func (a *StakeAPIService) GetStakingContext(ctx context.Context) ApiGetStakingContextRequest
- func (a *StakeAPIService) GetStakingContextExecute(r ApiGetStakingContextRequest) (*StakingContext, *http.Response, error)
- type StakingBalance
- func (o *StakingBalance) GetAddress() string
- func (o *StakingBalance) GetAddressOk() (*string, bool)
- func (o *StakingBalance) GetBondedStake() Balance
- func (o *StakingBalance) GetBondedStakeOk() (*Balance, bool)
- func (o *StakingBalance) GetDate() time.Time
- func (o *StakingBalance) GetDateOk() (*time.Time, bool)
- func (o *StakingBalance) GetParticipantType() string
- func (o *StakingBalance) GetParticipantTypeOk() (*string, bool)
- func (o *StakingBalance) GetUnbondedBalance() Balance
- func (o *StakingBalance) GetUnbondedBalanceOk() (*Balance, bool)
- func (o StakingBalance) MarshalJSON() ([]byte, error)
- func (o *StakingBalance) SetAddress(v string)
- func (o *StakingBalance) SetBondedStake(v Balance)
- func (o *StakingBalance) SetDate(v time.Time)
- func (o *StakingBalance) SetParticipantType(v string)
- func (o *StakingBalance) SetUnbondedBalance(v Balance)
- func (o StakingBalance) ToMap() (map[string]interface{}, error)
- func (o *StakingBalance) UnmarshalJSON(data []byte) (err error)
- type StakingContext
- func (o *StakingContext) GetContext() StakingContextContext
- func (o *StakingContext) GetContextOk() (*StakingContextContext, bool)
- func (o StakingContext) MarshalJSON() ([]byte, error)
- func (o *StakingContext) SetContext(v StakingContextContext)
- func (o StakingContext) ToMap() (map[string]interface{}, error)
- func (o *StakingContext) UnmarshalJSON(data []byte) (err error)
- type StakingContextContext
- func (o *StakingContextContext) GetClaimableBalance() Balance
- func (o *StakingContextContext) GetClaimableBalanceOk() (*Balance, bool)
- func (o *StakingContextContext) GetStakeableBalance() Balance
- func (o *StakingContextContext) GetStakeableBalanceOk() (*Balance, bool)
- func (o *StakingContextContext) GetUnstakeableBalance() Balance
- func (o *StakingContextContext) GetUnstakeableBalanceOk() (*Balance, bool)
- func (o StakingContextContext) MarshalJSON() ([]byte, error)
- func (o *StakingContextContext) SetClaimableBalance(v Balance)
- func (o *StakingContextContext) SetStakeableBalance(v Balance)
- func (o *StakingContextContext) SetUnstakeableBalance(v Balance)
- func (o StakingContextContext) ToMap() (map[string]interface{}, error)
- func (o *StakingContextContext) UnmarshalJSON(data []byte) (err error)
- type StakingOperation
- func (o *StakingOperation) GetAddressId() string
- func (o *StakingOperation) GetAddressIdOk() (*string, bool)
- func (o *StakingOperation) GetId() string
- func (o *StakingOperation) GetIdOk() (*string, bool)
- func (o *StakingOperation) GetMetadata() StakingOperationMetadata
- func (o *StakingOperation) GetMetadataOk() (*StakingOperationMetadata, bool)
- func (o *StakingOperation) GetNetworkId() string
- func (o *StakingOperation) GetNetworkIdOk() (*string, bool)
- func (o *StakingOperation) GetStatus() string
- func (o *StakingOperation) GetStatusOk() (*string, bool)
- func (o *StakingOperation) GetTransactions() []Transaction
- func (o *StakingOperation) GetTransactionsOk() ([]Transaction, bool)
- func (o *StakingOperation) GetWalletId() string
- func (o *StakingOperation) GetWalletIdOk() (*string, bool)
- func (o *StakingOperation) HasMetadata() bool
- func (o *StakingOperation) HasWalletId() bool
- func (o StakingOperation) MarshalJSON() ([]byte, error)
- func (o *StakingOperation) SetAddressId(v string)
- func (o *StakingOperation) SetId(v string)
- func (o *StakingOperation) SetMetadata(v StakingOperationMetadata)
- func (o *StakingOperation) SetNetworkId(v string)
- func (o *StakingOperation) SetStatus(v string)
- func (o *StakingOperation) SetTransactions(v []Transaction)
- func (o *StakingOperation) SetWalletId(v string)
- func (o StakingOperation) ToMap() (map[string]interface{}, error)
- func (o *StakingOperation) UnmarshalJSON(data []byte) (err error)
- type StakingOperationMetadata
- type StakingReward
- func (o *StakingReward) GetAddressId() string
- func (o *StakingReward) GetAddressIdOk() (*string, bool)
- func (o *StakingReward) GetAmount() string
- func (o *StakingReward) GetAmountOk() (*string, bool)
- func (o *StakingReward) GetDate() time.Time
- func (o *StakingReward) GetDateOk() (*time.Time, bool)
- func (o *StakingReward) GetFormat() StakingRewardFormat
- func (o *StakingReward) GetFormatOk() (*StakingRewardFormat, bool)
- func (o *StakingReward) GetState() string
- func (o *StakingReward) GetStateOk() (*string, bool)
- func (o *StakingReward) GetUsdValue() StakingRewardUSDValue
- func (o *StakingReward) GetUsdValueOk() (*StakingRewardUSDValue, bool)
- func (o StakingReward) MarshalJSON() ([]byte, error)
- func (o *StakingReward) SetAddressId(v string)
- func (o *StakingReward) SetAmount(v string)
- func (o *StakingReward) SetDate(v time.Time)
- func (o *StakingReward) SetFormat(v StakingRewardFormat)
- func (o *StakingReward) SetState(v string)
- func (o *StakingReward) SetUsdValue(v StakingRewardUSDValue)
- func (o StakingReward) ToMap() (map[string]interface{}, error)
- func (o *StakingReward) UnmarshalJSON(data []byte) (err error)
- type StakingRewardFormat
- type StakingRewardUSDValue
- func (o *StakingRewardUSDValue) GetAmount() string
- func (o *StakingRewardUSDValue) GetAmountOk() (*string, bool)
- func (o *StakingRewardUSDValue) GetConversionPrice() string
- func (o *StakingRewardUSDValue) GetConversionPriceOk() (*string, bool)
- func (o *StakingRewardUSDValue) GetConversionTime() time.Time
- func (o *StakingRewardUSDValue) GetConversionTimeOk() (*time.Time, bool)
- func (o StakingRewardUSDValue) MarshalJSON() ([]byte, error)
- func (o *StakingRewardUSDValue) SetAmount(v string)
- func (o *StakingRewardUSDValue) SetConversionPrice(v string)
- func (o *StakingRewardUSDValue) SetConversionTime(v time.Time)
- func (o StakingRewardUSDValue) ToMap() (map[string]interface{}, error)
- func (o *StakingRewardUSDValue) UnmarshalJSON(data []byte) (err error)
- type TokenContractOptions
- func (o *TokenContractOptions) GetName() string
- func (o *TokenContractOptions) GetNameOk() (*string, bool)
- func (o *TokenContractOptions) GetSymbol() string
- func (o *TokenContractOptions) GetSymbolOk() (*string, bool)
- func (o *TokenContractOptions) GetTotalSupply() string
- func (o *TokenContractOptions) GetTotalSupplyOk() (*string, bool)
- func (o TokenContractOptions) MarshalJSON() ([]byte, error)
- func (o *TokenContractOptions) SetName(v string)
- func (o *TokenContractOptions) SetSymbol(v string)
- func (o *TokenContractOptions) SetTotalSupply(v string)
- func (o TokenContractOptions) ToMap() (map[string]interface{}, error)
- func (o *TokenContractOptions) UnmarshalJSON(data []byte) (err error)
- type Trade
- func (o *Trade) GetAddressId() string
- func (o *Trade) GetAddressIdOk() (*string, bool)
- func (o *Trade) GetApproveTransaction() Transaction
- func (o *Trade) GetApproveTransactionOk() (*Transaction, bool)
- func (o *Trade) GetFromAmount() string
- func (o *Trade) GetFromAmountOk() (*string, bool)
- func (o *Trade) GetFromAsset() Asset
- func (o *Trade) GetFromAssetOk() (*Asset, bool)
- func (o *Trade) GetNetworkId() string
- func (o *Trade) GetNetworkIdOk() (*string, bool)
- func (o *Trade) GetToAmount() string
- func (o *Trade) GetToAmountOk() (*string, bool)
- func (o *Trade) GetToAsset() Asset
- func (o *Trade) GetToAssetOk() (*Asset, bool)
- func (o *Trade) GetTradeId() string
- func (o *Trade) GetTradeIdOk() (*string, bool)
- func (o *Trade) GetTransaction() Transaction
- func (o *Trade) GetTransactionOk() (*Transaction, bool)
- func (o *Trade) GetWalletId() string
- func (o *Trade) GetWalletIdOk() (*string, bool)
- func (o *Trade) HasApproveTransaction() bool
- func (o Trade) MarshalJSON() ([]byte, error)
- func (o *Trade) SetAddressId(v string)
- func (o *Trade) SetApproveTransaction(v Transaction)
- func (o *Trade) SetFromAmount(v string)
- func (o *Trade) SetFromAsset(v Asset)
- func (o *Trade) SetNetworkId(v string)
- func (o *Trade) SetToAmount(v string)
- func (o *Trade) SetToAsset(v Asset)
- func (o *Trade) SetTradeId(v string)
- func (o *Trade) SetTransaction(v Transaction)
- func (o *Trade) SetWalletId(v string)
- func (o Trade) ToMap() (map[string]interface{}, error)
- func (o *Trade) UnmarshalJSON(data []byte) (err error)
- type TradeList
- func (o *TradeList) GetData() []Trade
- func (o *TradeList) GetDataOk() ([]Trade, bool)
- func (o *TradeList) GetHasMore() bool
- func (o *TradeList) GetHasMoreOk() (*bool, bool)
- func (o *TradeList) GetNextPage() string
- func (o *TradeList) GetNextPageOk() (*string, bool)
- func (o *TradeList) GetTotalCount() int32
- func (o *TradeList) GetTotalCountOk() (*int32, bool)
- func (o TradeList) MarshalJSON() ([]byte, error)
- func (o *TradeList) SetData(v []Trade)
- func (o *TradeList) SetHasMore(v bool)
- func (o *TradeList) SetNextPage(v string)
- func (o *TradeList) SetTotalCount(v int32)
- func (o TradeList) ToMap() (map[string]interface{}, error)
- func (o *TradeList) UnmarshalJSON(data []byte) (err error)
- type TradesAPI
- type TradesAPIService
- func (a *TradesAPIService) BroadcastTrade(ctx context.Context, walletId string, addressId string, tradeId string) ApiBroadcastTradeRequest
- func (a *TradesAPIService) BroadcastTradeExecute(r ApiBroadcastTradeRequest) (*Trade, *http.Response, error)
- func (a *TradesAPIService) CreateTrade(ctx context.Context, walletId string, addressId string) ApiCreateTradeRequest
- func (a *TradesAPIService) CreateTradeExecute(r ApiCreateTradeRequest) (*Trade, *http.Response, error)
- func (a *TradesAPIService) GetTrade(ctx context.Context, walletId string, addressId string, tradeId string) ApiGetTradeRequest
- func (a *TradesAPIService) GetTradeExecute(r ApiGetTradeRequest) (*Trade, *http.Response, error)
- func (a *TradesAPIService) ListTrades(ctx context.Context, walletId string, addressId string) ApiListTradesRequest
- func (a *TradesAPIService) ListTradesExecute(r ApiListTradesRequest) (*TradeList, *http.Response, error)
- type Transaction
- func (o *Transaction) GetBlockHash() string
- func (o *Transaction) GetBlockHashOk() (*string, bool)
- func (o *Transaction) GetBlockHeight() string
- func (o *Transaction) GetBlockHeightOk() (*string, bool)
- func (o *Transaction) GetContent() TransactionContent
- func (o *Transaction) GetContentOk() (*TransactionContent, bool)
- func (o *Transaction) GetFromAddressId() string
- func (o *Transaction) GetFromAddressIdOk() (*string, bool)
- func (o *Transaction) GetNetworkId() string
- func (o *Transaction) GetNetworkIdOk() (*string, bool)
- func (o *Transaction) GetSignedPayload() string
- func (o *Transaction) GetSignedPayloadOk() (*string, bool)
- func (o *Transaction) GetStatus() string
- func (o *Transaction) GetStatusOk() (*string, bool)
- func (o *Transaction) GetToAddressId() string
- func (o *Transaction) GetToAddressIdOk() (*string, bool)
- func (o *Transaction) GetTransactionHash() string
- func (o *Transaction) GetTransactionHashOk() (*string, bool)
- func (o *Transaction) GetTransactionLink() string
- func (o *Transaction) GetTransactionLinkOk() (*string, bool)
- func (o *Transaction) GetUnsignedPayload() string
- func (o *Transaction) GetUnsignedPayloadOk() (*string, bool)
- func (o *Transaction) HasBlockHash() bool
- func (o *Transaction) HasBlockHeight() bool
- func (o *Transaction) HasContent() bool
- func (o *Transaction) HasSignedPayload() bool
- func (o *Transaction) HasToAddressId() bool
- func (o *Transaction) HasTransactionHash() bool
- func (o *Transaction) HasTransactionLink() bool
- func (o Transaction) MarshalJSON() ([]byte, error)
- func (o *Transaction) SetBlockHash(v string)
- func (o *Transaction) SetBlockHeight(v string)
- func (o *Transaction) SetContent(v TransactionContent)
- func (o *Transaction) SetFromAddressId(v string)
- func (o *Transaction) SetNetworkId(v string)
- func (o *Transaction) SetSignedPayload(v string)
- func (o *Transaction) SetStatus(v string)
- func (o *Transaction) SetToAddressId(v string)
- func (o *Transaction) SetTransactionHash(v string)
- func (o *Transaction) SetTransactionLink(v string)
- func (o *Transaction) SetUnsignedPayload(v string)
- func (o Transaction) ToMap() (map[string]interface{}, error)
- func (o *Transaction) UnmarshalJSON(data []byte) (err error)
- type TransactionContent
- type TransactionType
- type Transfer
- func (o *Transfer) GetAddressId() string
- func (o *Transfer) GetAddressIdOk() (*string, bool)
- func (o *Transfer) GetAmount() string
- func (o *Transfer) GetAmountOk() (*string, bool)
- func (o *Transfer) GetAsset() Asset
- func (o *Transfer) GetAssetId() string
- func (o *Transfer) GetAssetIdOk() (*string, bool)
- func (o *Transfer) GetAssetOk() (*Asset, bool)
- func (o *Transfer) GetDestination() string
- func (o *Transfer) GetDestinationOk() (*string, bool)
- func (o *Transfer) GetGasless() bool
- func (o *Transfer) GetGaslessOk() (*bool, bool)
- func (o *Transfer) GetNetworkId() string
- func (o *Transfer) GetNetworkIdOk() (*string, bool)
- func (o *Transfer) GetSignedPayload() string
- func (o *Transfer) GetSignedPayloadOk() (*string, bool)
- func (o *Transfer) GetSponsoredSend() SponsoredSend
- func (o *Transfer) GetSponsoredSendOk() (*SponsoredSend, bool)
- func (o *Transfer) GetStatus() string
- func (o *Transfer) GetStatusOk() (*string, bool)
- func (o *Transfer) GetTransaction() Transaction
- func (o *Transfer) GetTransactionHash() string
- func (o *Transfer) GetTransactionHashOk() (*string, bool)
- func (o *Transfer) GetTransactionOk() (*Transaction, bool)
- func (o *Transfer) GetTransferId() string
- func (o *Transfer) GetTransferIdOk() (*string, bool)
- func (o *Transfer) GetUnsignedPayload() string
- func (o *Transfer) GetUnsignedPayloadOk() (*string, bool)
- func (o *Transfer) GetWalletId() string
- func (o *Transfer) GetWalletIdOk() (*string, bool)
- func (o *Transfer) HasSignedPayload() bool
- func (o *Transfer) HasSponsoredSend() bool
- func (o *Transfer) HasStatus() bool
- func (o *Transfer) HasTransaction() bool
- func (o *Transfer) HasTransactionHash() bool
- func (o *Transfer) HasUnsignedPayload() bool
- func (o Transfer) MarshalJSON() ([]byte, error)
- func (o *Transfer) SetAddressId(v string)
- func (o *Transfer) SetAmount(v string)
- func (o *Transfer) SetAsset(v Asset)
- func (o *Transfer) SetAssetId(v string)
- func (o *Transfer) SetDestination(v string)
- func (o *Transfer) SetGasless(v bool)
- func (o *Transfer) SetNetworkId(v string)
- func (o *Transfer) SetSignedPayload(v string)
- func (o *Transfer) SetSponsoredSend(v SponsoredSend)
- func (o *Transfer) SetStatus(v string)
- func (o *Transfer) SetTransaction(v Transaction)
- func (o *Transfer) SetTransactionHash(v string)
- func (o *Transfer) SetTransferId(v string)
- func (o *Transfer) SetUnsignedPayload(v string)
- func (o *Transfer) SetWalletId(v string)
- func (o Transfer) ToMap() (map[string]interface{}, error)
- func (o *Transfer) UnmarshalJSON(data []byte) (err error)
- type TransferList
- func (o *TransferList) GetData() []Transfer
- func (o *TransferList) GetDataOk() ([]Transfer, bool)
- func (o *TransferList) GetHasMore() bool
- func (o *TransferList) GetHasMoreOk() (*bool, bool)
- func (o *TransferList) GetNextPage() string
- func (o *TransferList) GetNextPageOk() (*string, bool)
- func (o *TransferList) GetTotalCount() int32
- func (o *TransferList) GetTotalCountOk() (*int32, bool)
- func (o TransferList) MarshalJSON() ([]byte, error)
- func (o *TransferList) SetData(v []Transfer)
- func (o *TransferList) SetHasMore(v bool)
- func (o *TransferList) SetNextPage(v string)
- func (o *TransferList) SetTotalCount(v int32)
- func (o TransferList) ToMap() (map[string]interface{}, error)
- func (o *TransferList) UnmarshalJSON(data []byte) (err error)
- type TransfersAPI
- type TransfersAPIService
- func (a *TransfersAPIService) BroadcastTransfer(ctx context.Context, walletId string, addressId string, transferId string) ApiBroadcastTransferRequest
- func (a *TransfersAPIService) BroadcastTransferExecute(r ApiBroadcastTransferRequest) (*Transfer, *http.Response, error)
- func (a *TransfersAPIService) CreateTransfer(ctx context.Context, walletId string, addressId string) ApiCreateTransferRequest
- func (a *TransfersAPIService) CreateTransferExecute(r ApiCreateTransferRequest) (*Transfer, *http.Response, error)
- func (a *TransfersAPIService) GetTransfer(ctx context.Context, walletId string, addressId string, transferId string) ApiGetTransferRequest
- func (a *TransfersAPIService) GetTransferExecute(r ApiGetTransferRequest) (*Transfer, *http.Response, error)
- func (a *TransfersAPIService) ListTransfers(ctx context.Context, walletId string, addressId string) ApiListTransfersRequest
- func (a *TransfersAPIService) ListTransfersExecute(r ApiListTransfersRequest) (*TransferList, *http.Response, error)
- type UpdateWebhookRequest
- func (o *UpdateWebhookRequest) GetEventFilters() []WebhookEventFilter
- func (o *UpdateWebhookRequest) GetEventFiltersOk() ([]WebhookEventFilter, bool)
- func (o *UpdateWebhookRequest) GetEventTypeFilter() WebhookEventTypeFilter
- func (o *UpdateWebhookRequest) GetEventTypeFilterOk() (*WebhookEventTypeFilter, bool)
- func (o *UpdateWebhookRequest) GetNotificationUri() string
- func (o *UpdateWebhookRequest) GetNotificationUriOk() (*string, bool)
- func (o *UpdateWebhookRequest) HasEventFilters() bool
- func (o *UpdateWebhookRequest) HasEventTypeFilter() bool
- func (o UpdateWebhookRequest) MarshalJSON() ([]byte, error)
- func (o *UpdateWebhookRequest) SetEventFilters(v []WebhookEventFilter)
- func (o *UpdateWebhookRequest) SetEventTypeFilter(v WebhookEventTypeFilter)
- func (o *UpdateWebhookRequest) SetNotificationUri(v string)
- func (o UpdateWebhookRequest) ToMap() (map[string]interface{}, error)
- func (o *UpdateWebhookRequest) UnmarshalJSON(data []byte) (err error)
- type User
- func (o *User) GetDisplayName() string
- func (o *User) GetDisplayNameOk() (*string, bool)
- func (o *User) GetId() string
- func (o *User) GetIdOk() (*string, bool)
- func (o *User) HasDisplayName() bool
- func (o User) MarshalJSON() ([]byte, error)
- func (o *User) SetDisplayName(v string)
- func (o *User) SetId(v string)
- func (o User) ToMap() (map[string]interface{}, error)
- func (o *User) UnmarshalJSON(data []byte) (err error)
- type UsersAPI
- type UsersAPIService
- type Validator
- func (o *Validator) GetAssetId() string
- func (o *Validator) GetAssetIdOk() (*string, bool)
- func (o *Validator) GetDetails() ValidatorDetails
- func (o *Validator) GetDetailsOk() (*ValidatorDetails, bool)
- func (o *Validator) GetNetworkId() string
- func (o *Validator) GetNetworkIdOk() (*string, bool)
- func (o *Validator) GetStatus() ValidatorStatus
- func (o *Validator) GetStatusOk() (*ValidatorStatus, bool)
- func (o *Validator) GetValidatorId() string
- func (o *Validator) GetValidatorIdOk() (*string, bool)
- func (o *Validator) HasDetails() bool
- func (o Validator) MarshalJSON() ([]byte, error)
- func (o *Validator) SetAssetId(v string)
- func (o *Validator) SetDetails(v ValidatorDetails)
- func (o *Validator) SetNetworkId(v string)
- func (o *Validator) SetStatus(v ValidatorStatus)
- func (o *Validator) SetValidatorId(v string)
- func (o Validator) ToMap() (map[string]interface{}, error)
- func (o *Validator) UnmarshalJSON(data []byte) (err error)
- type ValidatorDetails
- type ValidatorList
- func (o *ValidatorList) GetData() []Validator
- func (o *ValidatorList) GetDataOk() ([]Validator, bool)
- func (o *ValidatorList) GetHasMore() bool
- func (o *ValidatorList) GetHasMoreOk() (*bool, bool)
- func (o *ValidatorList) GetNextPage() string
- func (o *ValidatorList) GetNextPageOk() (*string, bool)
- func (o ValidatorList) MarshalJSON() ([]byte, error)
- func (o *ValidatorList) SetData(v []Validator)
- func (o *ValidatorList) SetHasMore(v bool)
- func (o *ValidatorList) SetNextPage(v string)
- func (o ValidatorList) ToMap() (map[string]interface{}, error)
- func (o *ValidatorList) UnmarshalJSON(data []byte) (err error)
- type ValidatorStatus
- type ValidatorsAPI
- type ValidatorsAPIService
- func (a *ValidatorsAPIService) GetValidator(ctx context.Context, networkId string, assetId string, validatorId string) ApiGetValidatorRequest
- func (a *ValidatorsAPIService) GetValidatorExecute(r ApiGetValidatorRequest) (*Validator, *http.Response, error)
- func (a *ValidatorsAPIService) ListValidators(ctx context.Context, networkId string, assetId string) ApiListValidatorsRequest
- func (a *ValidatorsAPIService) ListValidatorsExecute(r ApiListValidatorsRequest) (*ValidatorList, *http.Response, error)
- type Wallet
- func (o *Wallet) GetDefaultAddress() Address
- func (o *Wallet) GetDefaultAddressOk() (*Address, bool)
- func (o *Wallet) GetFeatureSet() FeatureSet
- func (o *Wallet) GetFeatureSetOk() (*FeatureSet, bool)
- func (o *Wallet) GetId() string
- func (o *Wallet) GetIdOk() (*string, bool)
- func (o *Wallet) GetNetworkId() string
- func (o *Wallet) GetNetworkIdOk() (*string, bool)
- func (o *Wallet) GetServerSignerStatus() string
- func (o *Wallet) GetServerSignerStatusOk() (*string, bool)
- func (o *Wallet) HasDefaultAddress() bool
- func (o *Wallet) HasServerSignerStatus() bool
- func (o Wallet) MarshalJSON() ([]byte, error)
- func (o *Wallet) SetDefaultAddress(v Address)
- func (o *Wallet) SetFeatureSet(v FeatureSet)
- func (o *Wallet) SetId(v string)
- func (o *Wallet) SetNetworkId(v string)
- func (o *Wallet) SetServerSignerStatus(v string)
- func (o Wallet) ToMap() (map[string]interface{}, error)
- func (o *Wallet) UnmarshalJSON(data []byte) (err error)
- type WalletList
- func (o *WalletList) GetData() []Wallet
- func (o *WalletList) GetDataOk() ([]Wallet, bool)
- func (o *WalletList) GetHasMore() bool
- func (o *WalletList) GetHasMoreOk() (*bool, bool)
- func (o *WalletList) GetNextPage() string
- func (o *WalletList) GetNextPageOk() (*string, bool)
- func (o *WalletList) GetTotalCount() int32
- func (o *WalletList) GetTotalCountOk() (*int32, bool)
- func (o WalletList) MarshalJSON() ([]byte, error)
- func (o *WalletList) SetData(v []Wallet)
- func (o *WalletList) SetHasMore(v bool)
- func (o *WalletList) SetNextPage(v string)
- func (o *WalletList) SetTotalCount(v int32)
- func (o WalletList) ToMap() (map[string]interface{}, error)
- func (o *WalletList) UnmarshalJSON(data []byte) (err error)
- type WalletStakeAPI
- type WalletStakeAPIService
- func (a *WalletStakeAPIService) BroadcastStakingOperation(ctx context.Context, walletId string, addressId string, ...) ApiBroadcastStakingOperationRequest
- func (a *WalletStakeAPIService) BroadcastStakingOperationExecute(r ApiBroadcastStakingOperationRequest) (*StakingOperation, *http.Response, error)
- func (a *WalletStakeAPIService) CreateStakingOperation(ctx context.Context, walletId string, addressId string) ApiCreateStakingOperationRequest
- func (a *WalletStakeAPIService) CreateStakingOperationExecute(r ApiCreateStakingOperationRequest) (*StakingOperation, *http.Response, error)
- func (a *WalletStakeAPIService) GetStakingOperation(ctx context.Context, walletId string, addressId string, ...) ApiGetStakingOperationRequest
- func (a *WalletStakeAPIService) GetStakingOperationExecute(r ApiGetStakingOperationRequest) (*StakingOperation, *http.Response, error)
- type WalletsAPI
- type WalletsAPIService
- func (a *WalletsAPIService) CreateWallet(ctx context.Context) ApiCreateWalletRequest
- func (a *WalletsAPIService) CreateWalletExecute(r ApiCreateWalletRequest) (*Wallet, *http.Response, error)
- func (a *WalletsAPIService) GetWallet(ctx context.Context, walletId string) ApiGetWalletRequest
- func (a *WalletsAPIService) GetWalletBalance(ctx context.Context, walletId string, assetId string) ApiGetWalletBalanceRequest
- func (a *WalletsAPIService) GetWalletBalanceExecute(r ApiGetWalletBalanceRequest) (*Balance, *http.Response, error)
- func (a *WalletsAPIService) GetWalletExecute(r ApiGetWalletRequest) (*Wallet, *http.Response, error)
- func (a *WalletsAPIService) ListWalletBalances(ctx context.Context, walletId string) ApiListWalletBalancesRequest
- func (a *WalletsAPIService) ListWalletBalancesExecute(r ApiListWalletBalancesRequest) (*AddressBalanceList, *http.Response, error)
- func (a *WalletsAPIService) ListWallets(ctx context.Context) ApiListWalletsRequest
- func (a *WalletsAPIService) ListWalletsExecute(r ApiListWalletsRequest) (*WalletList, *http.Response, error)
- type Webhook
- func (o *Webhook) GetCreatedAt() time.Time
- func (o *Webhook) GetCreatedAtOk() (*time.Time, bool)
- func (o *Webhook) GetEventFilters() []WebhookEventFilter
- func (o *Webhook) GetEventFiltersOk() ([]WebhookEventFilter, bool)
- func (o *Webhook) GetEventType() WebhookEventType
- func (o *Webhook) GetEventTypeFilter() WebhookEventTypeFilter
- func (o *Webhook) GetEventTypeFilterOk() (*WebhookEventTypeFilter, bool)
- func (o *Webhook) GetEventTypeOk() (*WebhookEventType, bool)
- func (o *Webhook) GetId() string
- func (o *Webhook) GetIdOk() (*string, bool)
- func (o *Webhook) GetNetworkId() string
- func (o *Webhook) GetNetworkIdOk() (*string, bool)
- func (o *Webhook) GetNotificationUri() string
- func (o *Webhook) GetNotificationUriOk() (*string, bool)
- func (o *Webhook) GetSignatureHeader() string
- func (o *Webhook) GetSignatureHeaderOk() (*string, bool)
- func (o *Webhook) GetUpdatedAt() time.Time
- func (o *Webhook) GetUpdatedAtOk() (*time.Time, bool)
- func (o *Webhook) HasCreatedAt() bool
- func (o *Webhook) HasEventFilters() bool
- func (o *Webhook) HasEventType() bool
- func (o *Webhook) HasEventTypeFilter() bool
- func (o *Webhook) HasId() bool
- func (o *Webhook) HasNetworkId() bool
- func (o *Webhook) HasNotificationUri() bool
- func (o *Webhook) HasSignatureHeader() bool
- func (o *Webhook) HasUpdatedAt() bool
- func (o Webhook) MarshalJSON() ([]byte, error)
- func (o *Webhook) SetCreatedAt(v time.Time)
- func (o *Webhook) SetEventFilters(v []WebhookEventFilter)
- func (o *Webhook) SetEventType(v WebhookEventType)
- func (o *Webhook) SetEventTypeFilter(v WebhookEventTypeFilter)
- func (o *Webhook) SetId(v string)
- func (o *Webhook) SetNetworkId(v string)
- func (o *Webhook) SetNotificationUri(v string)
- func (o *Webhook) SetSignatureHeader(v string)
- func (o *Webhook) SetUpdatedAt(v time.Time)
- func (o Webhook) ToMap() (map[string]interface{}, error)
- type WebhookEventFilter
- func (o *WebhookEventFilter) GetContractAddress() string
- func (o *WebhookEventFilter) GetContractAddressOk() (*string, bool)
- func (o *WebhookEventFilter) GetFromAddress() string
- func (o *WebhookEventFilter) GetFromAddressOk() (*string, bool)
- func (o *WebhookEventFilter) GetToAddress() string
- func (o *WebhookEventFilter) GetToAddressOk() (*string, bool)
- func (o *WebhookEventFilter) HasContractAddress() bool
- func (o *WebhookEventFilter) HasFromAddress() bool
- func (o *WebhookEventFilter) HasToAddress() bool
- func (o WebhookEventFilter) MarshalJSON() ([]byte, error)
- func (o *WebhookEventFilter) SetContractAddress(v string)
- func (o *WebhookEventFilter) SetFromAddress(v string)
- func (o *WebhookEventFilter) SetToAddress(v string)
- func (o WebhookEventFilter) ToMap() (map[string]interface{}, error)
- type WebhookEventType
- type WebhookEventTypeFilter
- type WebhookList
- func (o *WebhookList) GetData() []Webhook
- func (o *WebhookList) GetDataOk() ([]Webhook, bool)
- func (o *WebhookList) GetHasMore() bool
- func (o *WebhookList) GetHasMoreOk() (*bool, bool)
- func (o *WebhookList) GetNextPage() string
- func (o *WebhookList) GetNextPageOk() (*string, bool)
- func (o *WebhookList) HasHasMore() bool
- func (o *WebhookList) HasNextPage() bool
- func (o WebhookList) MarshalJSON() ([]byte, error)
- func (o *WebhookList) SetData(v []Webhook)
- func (o *WebhookList) SetHasMore(v bool)
- func (o *WebhookList) SetNextPage(v string)
- func (o WebhookList) ToMap() (map[string]interface{}, error)
- func (o *WebhookList) UnmarshalJSON(data []byte) (err error)
- type WebhookWalletActivityFilter
- func (o *WebhookWalletActivityFilter) GetAddresses() []string
- func (o *WebhookWalletActivityFilter) GetAddressesOk() ([]string, bool)
- func (o *WebhookWalletActivityFilter) GetWalletId() string
- func (o *WebhookWalletActivityFilter) GetWalletIdOk() (*string, bool)
- func (o *WebhookWalletActivityFilter) HasAddresses() bool
- func (o *WebhookWalletActivityFilter) HasWalletId() bool
- func (o WebhookWalletActivityFilter) MarshalJSON() ([]byte, error)
- func (o *WebhookWalletActivityFilter) SetAddresses(v []string)
- func (o *WebhookWalletActivityFilter) SetWalletId(v string)
- func (o WebhookWalletActivityFilter) ToMap() (map[string]interface{}, error)
- type WebhooksAPI
- type WebhooksAPIService
- func (a *WebhooksAPIService) CreateWebhook(ctx context.Context) ApiCreateWebhookRequest
- func (a *WebhooksAPIService) CreateWebhookExecute(r ApiCreateWebhookRequest) (*Webhook, *http.Response, error)
- func (a *WebhooksAPIService) DeleteWebhook(ctx context.Context, webhookId string) ApiDeleteWebhookRequest
- func (a *WebhooksAPIService) DeleteWebhookExecute(r ApiDeleteWebhookRequest) (*http.Response, error)
- func (a *WebhooksAPIService) ListWebhooks(ctx context.Context) ApiListWebhooksRequest
- func (a *WebhooksAPIService) ListWebhooksExecute(r ApiListWebhooksRequest) (*WebhookList, *http.Response, error)
- func (a *WebhooksAPIService) UpdateWebhook(ctx context.Context, webhookId string) ApiUpdateWebhookRequest
- func (a *WebhooksAPIService) UpdateWebhookExecute(r ApiUpdateWebhookRequest) (*Webhook, *http.Response, error)
Constants ¶
This section is empty.
Variables ¶
var ( JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) )
var ( // ContextServerIndex uses a server configuration from the index. ContextServerIndex = contextKey("serverIndex") // ContextOperationServerIndices uses a server configuration from the index mapping. ContextOperationServerIndices = contextKey("serverOperationIndices") // ContextServerVariables overrides a server configuration variables. ContextServerVariables = contextKey("serverVariables") // ContextOperationServerVariables overrides a server configuration variables using operation specific values. ContextOperationServerVariables = contextKey("serverOperationVariables") )
var AllowedNetworkIdentifierEnumValues = []NetworkIdentifier{
"base-sepolia",
"base-mainnet",
"ethereum-holesky",
"ethereum-mainnet",
"polygon-mainnet",
"solana-devnet",
"solana-mainnet",
"arbitrum-mainnet",
}
All allowed values of NetworkIdentifier enum
var AllowedSmartContractTypeEnumValues = []SmartContractType{
"erc20",
"erc721",
}
All allowed values of SmartContractType enum
var AllowedStakingRewardFormatEnumValues = []StakingRewardFormat{
"usd",
"native",
}
All allowed values of StakingRewardFormat enum
var AllowedTransactionTypeEnumValues = []TransactionType{
"transfer",
}
All allowed values of TransactionType enum
var AllowedValidatorStatusEnumValues = []ValidatorStatus{
"unknown",
"provisioning",
"provisioned",
"deposited",
"pending_activation",
"active",
"exiting",
"exited",
"withdrawal_available",
"withdrawal_complete",
"active_slashed",
"exited_slashed",
"reaped",
}
All allowed values of ValidatorStatus enum
var AllowedWebhookEventTypeEnumValues = []WebhookEventType{
"unspecified",
"erc20_transfer",
"erc721_transfer",
"wallet_activity",
}
All allowed values of WebhookEventType enum
Functions ¶
func CacheExpires ¶
CacheExpires helper function to determine remaining time before repeating a request.
func PtrFloat32 ¶
PtrFloat32 is a helper routine that returns a pointer to given float value.
func PtrFloat64 ¶
PtrFloat64 is a helper routine that returns a pointer to given float value.
Types ¶
type APIClient ¶
type APIClient struct { AddressesAPI AddressesAPI AssetsAPI AssetsAPI BalanceHistoryAPI BalanceHistoryAPI ContractEventsAPI ContractEventsAPI ContractInvocationsAPI ContractInvocationsAPI ExternalAddressesAPI ExternalAddressesAPI NetworksAPI NetworksAPI ServerSignersAPI ServerSignersAPI SmartContractsAPI SmartContractsAPI StakeAPI StakeAPI TradesAPI TradesAPI TransfersAPI TransfersAPI UsersAPI UsersAPI ValidatorsAPI ValidatorsAPI WalletStakeAPI WalletStakeAPI WalletsAPI WalletsAPI WebhooksAPI WebhooksAPI // contains filtered or unexported fields }
APIClient manages communication with the Coinbase Platform API API v0.0.1-alpha 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) GetConfig ¶
func (c *APIClient) GetConfig() *Configuration
Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior
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:"-"` }
APIResponse stores the API response returned by the server.
func NewAPIResponse ¶
func NewAPIResponse(r *http.Response) *APIResponse
NewAPIResponse returns a new APIResponse object.
func NewAPIResponseWithError ¶
func NewAPIResponseWithError(errorMessage string) *APIResponse
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
type Address ¶
type Address struct { // The ID of the wallet that owns the address WalletId string `json:"wallet_id"` // The ID of the blockchain network NetworkId string `json:"network_id"` // The public key from which the address is derived. PublicKey string `json:"public_key"` // The onchain address derived on the server-side. AddressId string `json:"address_id"` // The index of the address in the wallet. Index int32 `json:"index"` }
Address struct for Address
func NewAddress ¶
func NewAddress(walletId string, networkId string, publicKey string, addressId string, index int32) *Address
NewAddress instantiates a new Address 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
func NewAddressWithDefaults ¶
func NewAddressWithDefaults() *Address
NewAddressWithDefaults instantiates a new Address 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
func (*Address) GetAddressId ¶
GetAddressId returns the AddressId field value
func (*Address) GetAddressIdOk ¶
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*Address) GetIndexOk ¶
GetIndexOk returns a tuple with the Index field value and a boolean to check if the value has been set.
func (*Address) GetNetworkId ¶
GetNetworkId returns the NetworkId field value
func (*Address) GetNetworkIdOk ¶
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*Address) GetPublicKey ¶
GetPublicKey returns the PublicKey field value
func (*Address) GetPublicKeyOk ¶
GetPublicKeyOk returns a tuple with the PublicKey field value and a boolean to check if the value has been set.
func (*Address) GetWalletId ¶
GetWalletId returns the WalletId field value
func (*Address) GetWalletIdOk ¶
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (Address) MarshalJSON ¶
func (*Address) SetAddressId ¶
SetAddressId sets field value
func (*Address) SetNetworkId ¶
SetNetworkId sets field value
func (*Address) SetPublicKey ¶
SetPublicKey sets field value
func (*Address) UnmarshalJSON ¶
type AddressBalanceList ¶
type AddressBalanceList struct { Data []Balance `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of balances for the wallet. TotalCount int32 `json:"total_count"` }
AddressBalanceList
func NewAddressBalanceList ¶
func NewAddressBalanceList(data []Balance, hasMore bool, nextPage string, totalCount int32) *AddressBalanceList
NewAddressBalanceList instantiates a new AddressBalanceList 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
func NewAddressBalanceListWithDefaults ¶
func NewAddressBalanceListWithDefaults() *AddressBalanceList
NewAddressBalanceListWithDefaults instantiates a new AddressBalanceList 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
func (*AddressBalanceList) GetData ¶
func (o *AddressBalanceList) GetData() []Balance
GetData returns the Data field value
func (*AddressBalanceList) GetDataOk ¶
func (o *AddressBalanceList) GetDataOk() ([]Balance, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*AddressBalanceList) GetHasMore ¶
func (o *AddressBalanceList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*AddressBalanceList) GetHasMoreOk ¶
func (o *AddressBalanceList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*AddressBalanceList) GetNextPage ¶
func (o *AddressBalanceList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*AddressBalanceList) GetNextPageOk ¶
func (o *AddressBalanceList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*AddressBalanceList) GetTotalCount ¶
func (o *AddressBalanceList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*AddressBalanceList) GetTotalCountOk ¶
func (o *AddressBalanceList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (AddressBalanceList) MarshalJSON ¶
func (o AddressBalanceList) MarshalJSON() ([]byte, error)
func (*AddressBalanceList) SetData ¶
func (o *AddressBalanceList) SetData(v []Balance)
SetData sets field value
func (*AddressBalanceList) SetHasMore ¶
func (o *AddressBalanceList) SetHasMore(v bool)
SetHasMore sets field value
func (*AddressBalanceList) SetNextPage ¶
func (o *AddressBalanceList) SetNextPage(v string)
SetNextPage sets field value
func (*AddressBalanceList) SetTotalCount ¶
func (o *AddressBalanceList) SetTotalCount(v int32)
SetTotalCount sets field value
func (AddressBalanceList) ToMap ¶
func (o AddressBalanceList) ToMap() (map[string]interface{}, error)
func (*AddressBalanceList) UnmarshalJSON ¶
func (o *AddressBalanceList) UnmarshalJSON(data []byte) (err error)
type AddressHistoricalBalanceList ¶
type AddressHistoricalBalanceList struct { Data []HistoricalBalance `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` }
AddressHistoricalBalanceList
func NewAddressHistoricalBalanceList ¶
func NewAddressHistoricalBalanceList(data []HistoricalBalance, hasMore bool, nextPage string) *AddressHistoricalBalanceList
NewAddressHistoricalBalanceList instantiates a new AddressHistoricalBalanceList 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
func NewAddressHistoricalBalanceListWithDefaults ¶
func NewAddressHistoricalBalanceListWithDefaults() *AddressHistoricalBalanceList
NewAddressHistoricalBalanceListWithDefaults instantiates a new AddressHistoricalBalanceList 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
func (*AddressHistoricalBalanceList) GetData ¶
func (o *AddressHistoricalBalanceList) GetData() []HistoricalBalance
GetData returns the Data field value
func (*AddressHistoricalBalanceList) GetDataOk ¶
func (o *AddressHistoricalBalanceList) GetDataOk() ([]HistoricalBalance, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*AddressHistoricalBalanceList) GetHasMore ¶
func (o *AddressHistoricalBalanceList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*AddressHistoricalBalanceList) GetHasMoreOk ¶
func (o *AddressHistoricalBalanceList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*AddressHistoricalBalanceList) GetNextPage ¶
func (o *AddressHistoricalBalanceList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*AddressHistoricalBalanceList) GetNextPageOk ¶
func (o *AddressHistoricalBalanceList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (AddressHistoricalBalanceList) MarshalJSON ¶
func (o AddressHistoricalBalanceList) MarshalJSON() ([]byte, error)
func (*AddressHistoricalBalanceList) SetData ¶
func (o *AddressHistoricalBalanceList) SetData(v []HistoricalBalance)
SetData sets field value
func (*AddressHistoricalBalanceList) SetHasMore ¶
func (o *AddressHistoricalBalanceList) SetHasMore(v bool)
SetHasMore sets field value
func (*AddressHistoricalBalanceList) SetNextPage ¶
func (o *AddressHistoricalBalanceList) SetNextPage(v string)
SetNextPage sets field value
func (AddressHistoricalBalanceList) ToMap ¶
func (o AddressHistoricalBalanceList) ToMap() (map[string]interface{}, error)
func (*AddressHistoricalBalanceList) UnmarshalJSON ¶
func (o *AddressHistoricalBalanceList) UnmarshalJSON(data []byte) (err error)
type AddressList ¶
type AddressList struct { Data []Address `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of addresses for the wallet. TotalCount int32 `json:"total_count"` }
AddressList
func NewAddressList ¶
func NewAddressList(data []Address, hasMore bool, nextPage string, totalCount int32) *AddressList
NewAddressList instantiates a new AddressList 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
func NewAddressListWithDefaults ¶
func NewAddressListWithDefaults() *AddressList
NewAddressListWithDefaults instantiates a new AddressList 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
func (*AddressList) GetData ¶
func (o *AddressList) GetData() []Address
GetData returns the Data field value
func (*AddressList) GetDataOk ¶
func (o *AddressList) GetDataOk() ([]Address, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*AddressList) GetHasMore ¶
func (o *AddressList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*AddressList) GetHasMoreOk ¶
func (o *AddressList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*AddressList) GetNextPage ¶
func (o *AddressList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*AddressList) GetNextPageOk ¶
func (o *AddressList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*AddressList) GetTotalCount ¶
func (o *AddressList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*AddressList) GetTotalCountOk ¶
func (o *AddressList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (AddressList) MarshalJSON ¶
func (o AddressList) MarshalJSON() ([]byte, error)
func (*AddressList) SetHasMore ¶
func (o *AddressList) SetHasMore(v bool)
SetHasMore sets field value
func (*AddressList) SetNextPage ¶
func (o *AddressList) SetNextPage(v string)
SetNextPage sets field value
func (*AddressList) SetTotalCount ¶
func (o *AddressList) SetTotalCount(v int32)
SetTotalCount sets field value
func (AddressList) ToMap ¶
func (o AddressList) ToMap() (map[string]interface{}, error)
func (*AddressList) UnmarshalJSON ¶
func (o *AddressList) UnmarshalJSON(data []byte) (err error)
type AddressTransactionList ¶ added in v0.0.9
type AddressTransactionList struct { Data []Transaction `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` }
AddressTransactionList
func NewAddressTransactionList ¶ added in v0.0.9
func NewAddressTransactionList(data []Transaction, hasMore bool, nextPage string) *AddressTransactionList
NewAddressTransactionList instantiates a new AddressTransactionList 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
func NewAddressTransactionListWithDefaults ¶ added in v0.0.9
func NewAddressTransactionListWithDefaults() *AddressTransactionList
NewAddressTransactionListWithDefaults instantiates a new AddressTransactionList 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
func (*AddressTransactionList) GetData ¶ added in v0.0.9
func (o *AddressTransactionList) GetData() []Transaction
GetData returns the Data field value
func (*AddressTransactionList) GetDataOk ¶ added in v0.0.9
func (o *AddressTransactionList) GetDataOk() ([]Transaction, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*AddressTransactionList) GetHasMore ¶ added in v0.0.9
func (o *AddressTransactionList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*AddressTransactionList) GetHasMoreOk ¶ added in v0.0.9
func (o *AddressTransactionList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*AddressTransactionList) GetNextPage ¶ added in v0.0.9
func (o *AddressTransactionList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*AddressTransactionList) GetNextPageOk ¶ added in v0.0.9
func (o *AddressTransactionList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (AddressTransactionList) MarshalJSON ¶ added in v0.0.9
func (o AddressTransactionList) MarshalJSON() ([]byte, error)
func (*AddressTransactionList) SetData ¶ added in v0.0.9
func (o *AddressTransactionList) SetData(v []Transaction)
SetData sets field value
func (*AddressTransactionList) SetHasMore ¶ added in v0.0.9
func (o *AddressTransactionList) SetHasMore(v bool)
SetHasMore sets field value
func (*AddressTransactionList) SetNextPage ¶ added in v0.0.9
func (o *AddressTransactionList) SetNextPage(v string)
SetNextPage sets field value
func (AddressTransactionList) ToMap ¶ added in v0.0.9
func (o AddressTransactionList) ToMap() (map[string]interface{}, error)
func (*AddressTransactionList) UnmarshalJSON ¶ added in v0.0.9
func (o *AddressTransactionList) UnmarshalJSON(data []byte) (err error)
type AddressesAPI ¶
type AddressesAPI interface { /* CreateAddress Create a new address Create a new address scoped to the wallet. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to create the address in. @return ApiCreateAddressRequest */ CreateAddress(ctx context.Context, walletId string) ApiCreateAddressRequest // CreateAddressExecute executes the request // @return Address CreateAddressExecute(r ApiCreateAddressRequest) (*Address, *http.Response, error) /* CreatePayloadSignature Create a new payload signature. Create a new payload signature with an address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address to sign the payload with. @return ApiCreatePayloadSignatureRequest */ CreatePayloadSignature(ctx context.Context, walletId string, addressId string) ApiCreatePayloadSignatureRequest // CreatePayloadSignatureExecute executes the request // @return PayloadSignature CreatePayloadSignatureExecute(r ApiCreatePayloadSignatureRequest) (*PayloadSignature, *http.Response, error) /* GetAddress Get address by onchain address Get address @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that is being fetched. @return ApiGetAddressRequest */ GetAddress(ctx context.Context, walletId string, addressId string) ApiGetAddressRequest // GetAddressExecute executes the request // @return Address GetAddressExecute(r ApiGetAddressRequest) (*Address, *http.Response, error) /* GetAddressBalance Get address balance for asset Get address balance @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balance for @param addressId The onchain address of the address that is being fetched. @param assetId The symbol of the asset to fetch the balance for @return ApiGetAddressBalanceRequest */ GetAddressBalance(ctx context.Context, walletId string, addressId string, assetId string) ApiGetAddressBalanceRequest // GetAddressBalanceExecute executes the request // @return Balance GetAddressBalanceExecute(r ApiGetAddressBalanceRequest) (*Balance, *http.Response, error) /* GetPayloadSignature Get payload signature. Get payload signature. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that signed the payload. @param payloadSignatureId The ID of the payload signature to fetch. @return ApiGetPayloadSignatureRequest */ GetPayloadSignature(ctx context.Context, walletId string, addressId string, payloadSignatureId string) ApiGetPayloadSignatureRequest // GetPayloadSignatureExecute executes the request // @return PayloadSignature GetPayloadSignatureExecute(r ApiGetPayloadSignatureRequest) (*PayloadSignature, *http.Response, error) /* ListAddressBalances Get all balances for address Get address balances @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balances for @param addressId The onchain address of the address that is being fetched. @return ApiListAddressBalancesRequest */ ListAddressBalances(ctx context.Context, walletId string, addressId string) ApiListAddressBalancesRequest // ListAddressBalancesExecute executes the request // @return AddressBalanceList ListAddressBalancesExecute(r ApiListAddressBalancesRequest) (*AddressBalanceList, *http.Response, error) /* ListAddresses List addresses in a wallet. List addresses in the wallet. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet whose addresses to fetch @return ApiListAddressesRequest */ ListAddresses(ctx context.Context, walletId string) ApiListAddressesRequest // ListAddressesExecute executes the request // @return AddressList ListAddressesExecute(r ApiListAddressesRequest) (*AddressList, *http.Response, error) /* ListPayloadSignatures List payload signatures for an address. List payload signatures for an address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address whose payload signatures to fetch. @return ApiListPayloadSignaturesRequest */ ListPayloadSignatures(ctx context.Context, walletId string, addressId string) ApiListPayloadSignaturesRequest // ListPayloadSignaturesExecute executes the request // @return PayloadSignatureList ListPayloadSignaturesExecute(r ApiListPayloadSignaturesRequest) (*PayloadSignatureList, *http.Response, error) /* RequestFaucetFunds Request faucet funds for onchain address. Request faucet funds to be sent to onchain address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that is being fetched. @return ApiRequestFaucetFundsRequest */ RequestFaucetFunds(ctx context.Context, walletId string, addressId string) ApiRequestFaucetFundsRequest // RequestFaucetFundsExecute executes the request // @return FaucetTransaction RequestFaucetFundsExecute(r ApiRequestFaucetFundsRequest) (*FaucetTransaction, *http.Response, error) }
type AddressesAPIService ¶
type AddressesAPIService service
AddressesAPIService AddressesAPI service
func (*AddressesAPIService) CreateAddress ¶
func (a *AddressesAPIService) CreateAddress(ctx context.Context, walletId string) ApiCreateAddressRequest
CreateAddress Create a new address
Create a new address scoped to the wallet.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to create the address in. @return ApiCreateAddressRequest
func (*AddressesAPIService) CreateAddressExecute ¶
func (a *AddressesAPIService) CreateAddressExecute(r ApiCreateAddressRequest) (*Address, *http.Response, error)
Execute executes the request
@return Address
func (*AddressesAPIService) CreatePayloadSignature ¶ added in v0.0.9
func (a *AddressesAPIService) CreatePayloadSignature(ctx context.Context, walletId string, addressId string) ApiCreatePayloadSignatureRequest
CreatePayloadSignature Create a new payload signature.
Create a new payload signature with an address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address to sign the payload with. @return ApiCreatePayloadSignatureRequest
func (*AddressesAPIService) CreatePayloadSignatureExecute ¶ added in v0.0.9
func (a *AddressesAPIService) CreatePayloadSignatureExecute(r ApiCreatePayloadSignatureRequest) (*PayloadSignature, *http.Response, error)
Execute executes the request
@return PayloadSignature
func (*AddressesAPIService) GetAddress ¶
func (a *AddressesAPIService) GetAddress(ctx context.Context, walletId string, addressId string) ApiGetAddressRequest
GetAddress Get address by onchain address
Get address
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that is being fetched. @return ApiGetAddressRequest
func (*AddressesAPIService) GetAddressBalance ¶
func (a *AddressesAPIService) GetAddressBalance(ctx context.Context, walletId string, addressId string, assetId string) ApiGetAddressBalanceRequest
GetAddressBalance Get address balance for asset
Get address balance
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balance for @param addressId The onchain address of the address that is being fetched. @param assetId The symbol of the asset to fetch the balance for @return ApiGetAddressBalanceRequest
func (*AddressesAPIService) GetAddressBalanceExecute ¶
func (a *AddressesAPIService) GetAddressBalanceExecute(r ApiGetAddressBalanceRequest) (*Balance, *http.Response, error)
Execute executes the request
@return Balance
func (*AddressesAPIService) GetAddressExecute ¶
func (a *AddressesAPIService) GetAddressExecute(r ApiGetAddressRequest) (*Address, *http.Response, error)
Execute executes the request
@return Address
func (*AddressesAPIService) GetPayloadSignature ¶ added in v0.0.9
func (a *AddressesAPIService) GetPayloadSignature(ctx context.Context, walletId string, addressId string, payloadSignatureId string) ApiGetPayloadSignatureRequest
GetPayloadSignature Get payload signature.
Get payload signature.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that signed the payload. @param payloadSignatureId The ID of the payload signature to fetch. @return ApiGetPayloadSignatureRequest
func (*AddressesAPIService) GetPayloadSignatureExecute ¶ added in v0.0.9
func (a *AddressesAPIService) GetPayloadSignatureExecute(r ApiGetPayloadSignatureRequest) (*PayloadSignature, *http.Response, error)
Execute executes the request
@return PayloadSignature
func (*AddressesAPIService) ListAddressBalances ¶
func (a *AddressesAPIService) ListAddressBalances(ctx context.Context, walletId string, addressId string) ApiListAddressBalancesRequest
ListAddressBalances Get all balances for address
Get address balances
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balances for @param addressId The onchain address of the address that is being fetched. @return ApiListAddressBalancesRequest
func (*AddressesAPIService) ListAddressBalancesExecute ¶
func (a *AddressesAPIService) ListAddressBalancesExecute(r ApiListAddressBalancesRequest) (*AddressBalanceList, *http.Response, error)
Execute executes the request
@return AddressBalanceList
func (*AddressesAPIService) ListAddresses ¶
func (a *AddressesAPIService) ListAddresses(ctx context.Context, walletId string) ApiListAddressesRequest
ListAddresses List addresses in a wallet.
List addresses in the wallet.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet whose addresses to fetch @return ApiListAddressesRequest
func (*AddressesAPIService) ListAddressesExecute ¶
func (a *AddressesAPIService) ListAddressesExecute(r ApiListAddressesRequest) (*AddressList, *http.Response, error)
Execute executes the request
@return AddressList
func (*AddressesAPIService) ListPayloadSignatures ¶ added in v0.0.9
func (a *AddressesAPIService) ListPayloadSignatures(ctx context.Context, walletId string, addressId string) ApiListPayloadSignaturesRequest
ListPayloadSignatures List payload signatures for an address.
List payload signatures for an address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address whose payload signatures to fetch. @return ApiListPayloadSignaturesRequest
func (*AddressesAPIService) ListPayloadSignaturesExecute ¶ added in v0.0.9
func (a *AddressesAPIService) ListPayloadSignaturesExecute(r ApiListPayloadSignaturesRequest) (*PayloadSignatureList, *http.Response, error)
Execute executes the request
@return PayloadSignatureList
func (*AddressesAPIService) RequestFaucetFunds ¶
func (a *AddressesAPIService) RequestFaucetFunds(ctx context.Context, walletId string, addressId string) ApiRequestFaucetFundsRequest
RequestFaucetFunds Request faucet funds for onchain address.
Request faucet funds to be sent to onchain address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that is being fetched. @return ApiRequestFaucetFundsRequest
func (*AddressesAPIService) RequestFaucetFundsExecute ¶
func (a *AddressesAPIService) RequestFaucetFundsExecute(r ApiRequestFaucetFundsRequest) (*FaucetTransaction, *http.Response, error)
Execute executes the request
@return FaucetTransaction
type ApiBroadcastContractInvocationRequest ¶ added in v0.0.9
type ApiBroadcastContractInvocationRequest struct { ApiService ContractInvocationsAPI // contains filtered or unexported fields }
func (ApiBroadcastContractInvocationRequest) BroadcastContractInvocationRequest ¶ added in v0.0.9
func (r ApiBroadcastContractInvocationRequest) BroadcastContractInvocationRequest(broadcastContractInvocationRequest BroadcastContractInvocationRequest) ApiBroadcastContractInvocationRequest
func (ApiBroadcastContractInvocationRequest) Execute ¶ added in v0.0.9
func (r ApiBroadcastContractInvocationRequest) Execute() (*ContractInvocation, *http.Response, error)
type ApiBroadcastStakingOperationRequest ¶
type ApiBroadcastStakingOperationRequest struct { ApiService WalletStakeAPI // contains filtered or unexported fields }
func (ApiBroadcastStakingOperationRequest) BroadcastStakingOperationRequest ¶
func (r ApiBroadcastStakingOperationRequest) BroadcastStakingOperationRequest(broadcastStakingOperationRequest BroadcastStakingOperationRequest) ApiBroadcastStakingOperationRequest
func (ApiBroadcastStakingOperationRequest) Execute ¶
func (r ApiBroadcastStakingOperationRequest) Execute() (*StakingOperation, *http.Response, error)
type ApiBroadcastTradeRequest ¶
type ApiBroadcastTradeRequest struct { ApiService TradesAPI // contains filtered or unexported fields }
func (ApiBroadcastTradeRequest) BroadcastTradeRequest ¶
func (r ApiBroadcastTradeRequest) BroadcastTradeRequest(broadcastTradeRequest BroadcastTradeRequest) ApiBroadcastTradeRequest
type ApiBroadcastTransferRequest ¶
type ApiBroadcastTransferRequest struct { ApiService TransfersAPI // contains filtered or unexported fields }
func (ApiBroadcastTransferRequest) BroadcastTransferRequest ¶
func (r ApiBroadcastTransferRequest) BroadcastTransferRequest(broadcastTransferRequest BroadcastTransferRequest) ApiBroadcastTransferRequest
type ApiBuildStakingOperationRequest ¶
type ApiBuildStakingOperationRequest struct { ApiService StakeAPI // contains filtered or unexported fields }
func (ApiBuildStakingOperationRequest) BuildStakingOperationRequest ¶
func (r ApiBuildStakingOperationRequest) BuildStakingOperationRequest(buildStakingOperationRequest BuildStakingOperationRequest) ApiBuildStakingOperationRequest
func (ApiBuildStakingOperationRequest) Execute ¶
func (r ApiBuildStakingOperationRequest) Execute() (*StakingOperation, *http.Response, error)
type ApiCreateAddressRequest ¶
type ApiCreateAddressRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
func (ApiCreateAddressRequest) CreateAddressRequest ¶
func (r ApiCreateAddressRequest) CreateAddressRequest(createAddressRequest CreateAddressRequest) ApiCreateAddressRequest
type ApiCreateContractInvocationRequest ¶ added in v0.0.9
type ApiCreateContractInvocationRequest struct { ApiService ContractInvocationsAPI // contains filtered or unexported fields }
func (ApiCreateContractInvocationRequest) CreateContractInvocationRequest ¶ added in v0.0.9
func (r ApiCreateContractInvocationRequest) CreateContractInvocationRequest(createContractInvocationRequest CreateContractInvocationRequest) ApiCreateContractInvocationRequest
func (ApiCreateContractInvocationRequest) Execute ¶ added in v0.0.9
func (r ApiCreateContractInvocationRequest) Execute() (*ContractInvocation, *http.Response, error)
type ApiCreatePayloadSignatureRequest ¶ added in v0.0.9
type ApiCreatePayloadSignatureRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
func (ApiCreatePayloadSignatureRequest) CreatePayloadSignatureRequest ¶ added in v0.0.9
func (r ApiCreatePayloadSignatureRequest) CreatePayloadSignatureRequest(createPayloadSignatureRequest CreatePayloadSignatureRequest) ApiCreatePayloadSignatureRequest
func (ApiCreatePayloadSignatureRequest) Execute ¶ added in v0.0.9
func (r ApiCreatePayloadSignatureRequest) Execute() (*PayloadSignature, *http.Response, error)
type ApiCreateServerSignerRequest ¶
type ApiCreateServerSignerRequest struct { ApiService ServerSignersAPI // contains filtered or unexported fields }
func (ApiCreateServerSignerRequest) CreateServerSignerRequest ¶
func (r ApiCreateServerSignerRequest) CreateServerSignerRequest(createServerSignerRequest CreateServerSignerRequest) ApiCreateServerSignerRequest
func (ApiCreateServerSignerRequest) Execute ¶
func (r ApiCreateServerSignerRequest) Execute() (*ServerSigner, *http.Response, error)
type ApiCreateSmartContractRequest ¶ added in v0.0.9
type ApiCreateSmartContractRequest struct { ApiService SmartContractsAPI // contains filtered or unexported fields }
func (ApiCreateSmartContractRequest) CreateSmartContractRequest ¶ added in v0.0.9
func (r ApiCreateSmartContractRequest) CreateSmartContractRequest(createSmartContractRequest CreateSmartContractRequest) ApiCreateSmartContractRequest
func (ApiCreateSmartContractRequest) Execute ¶ added in v0.0.9
func (r ApiCreateSmartContractRequest) Execute() (*SmartContract, *http.Response, error)
type ApiCreateStakingOperationRequest ¶
type ApiCreateStakingOperationRequest struct { ApiService WalletStakeAPI // contains filtered or unexported fields }
func (ApiCreateStakingOperationRequest) CreateStakingOperationRequest ¶
func (r ApiCreateStakingOperationRequest) CreateStakingOperationRequest(createStakingOperationRequest CreateStakingOperationRequest) ApiCreateStakingOperationRequest
func (ApiCreateStakingOperationRequest) Execute ¶
func (r ApiCreateStakingOperationRequest) Execute() (*StakingOperation, *http.Response, error)
type ApiCreateTradeRequest ¶
type ApiCreateTradeRequest struct { ApiService TradesAPI // contains filtered or unexported fields }
func (ApiCreateTradeRequest) CreateTradeRequest ¶
func (r ApiCreateTradeRequest) CreateTradeRequest(createTradeRequest CreateTradeRequest) ApiCreateTradeRequest
type ApiCreateTransferRequest ¶
type ApiCreateTransferRequest struct { ApiService TransfersAPI // contains filtered or unexported fields }
func (ApiCreateTransferRequest) CreateTransferRequest ¶
func (r ApiCreateTransferRequest) CreateTransferRequest(createTransferRequest CreateTransferRequest) ApiCreateTransferRequest
type ApiCreateWalletRequest ¶
type ApiCreateWalletRequest struct { ApiService WalletsAPI // contains filtered or unexported fields }
func (ApiCreateWalletRequest) CreateWalletRequest ¶
func (r ApiCreateWalletRequest) CreateWalletRequest(createWalletRequest CreateWalletRequest) ApiCreateWalletRequest
type ApiCreateWebhookRequest ¶
type ApiCreateWebhookRequest struct { ApiService WebhooksAPI // contains filtered or unexported fields }
func (ApiCreateWebhookRequest) CreateWebhookRequest ¶
func (r ApiCreateWebhookRequest) CreateWebhookRequest(createWebhookRequest CreateWebhookRequest) ApiCreateWebhookRequest
type ApiDeleteWebhookRequest ¶
type ApiDeleteWebhookRequest struct { ApiService WebhooksAPI // contains filtered or unexported fields }
type ApiDeploySmartContractRequest ¶ added in v0.0.9
type ApiDeploySmartContractRequest struct { ApiService SmartContractsAPI // contains filtered or unexported fields }
func (ApiDeploySmartContractRequest) DeploySmartContractRequest ¶ added in v0.0.9
func (r ApiDeploySmartContractRequest) DeploySmartContractRequest(deploySmartContractRequest DeploySmartContractRequest) ApiDeploySmartContractRequest
func (ApiDeploySmartContractRequest) Execute ¶ added in v0.0.9
func (r ApiDeploySmartContractRequest) Execute() (*SmartContract, *http.Response, error)
type ApiFetchHistoricalStakingBalancesRequest ¶
type ApiFetchHistoricalStakingBalancesRequest struct { ApiService StakeAPI // contains filtered or unexported fields }
func (ApiFetchHistoricalStakingBalancesRequest) AssetId ¶
func (r ApiFetchHistoricalStakingBalancesRequest) AssetId(assetId string) ApiFetchHistoricalStakingBalancesRequest
The ID of the asset for which the historical staking balances are being fetched.
func (ApiFetchHistoricalStakingBalancesRequest) EndTime ¶
func (r ApiFetchHistoricalStakingBalancesRequest) EndTime(endTime time.Time) ApiFetchHistoricalStakingBalancesRequest
The end time of this historical staking balance period.
func (ApiFetchHistoricalStakingBalancesRequest) Execute ¶
func (r ApiFetchHistoricalStakingBalancesRequest) Execute() (*FetchHistoricalStakingBalances200Response, *http.Response, error)
func (ApiFetchHistoricalStakingBalancesRequest) Limit ¶
func (r ApiFetchHistoricalStakingBalancesRequest) Limit(limit int32) ApiFetchHistoricalStakingBalancesRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.
func (ApiFetchHistoricalStakingBalancesRequest) Page ¶
func (r ApiFetchHistoricalStakingBalancesRequest) Page(page string) ApiFetchHistoricalStakingBalancesRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
func (ApiFetchHistoricalStakingBalancesRequest) StartTime ¶
func (r ApiFetchHistoricalStakingBalancesRequest) StartTime(startTime time.Time) ApiFetchHistoricalStakingBalancesRequest
The start time of this historical staking balance period.
type ApiFetchStakingRewardsRequest ¶
type ApiFetchStakingRewardsRequest struct { ApiService StakeAPI // contains filtered or unexported fields }
func (ApiFetchStakingRewardsRequest) Execute ¶
func (r ApiFetchStakingRewardsRequest) Execute() (*FetchStakingRewards200Response, *http.Response, error)
func (ApiFetchStakingRewardsRequest) FetchStakingRewardsRequest ¶
func (r ApiFetchStakingRewardsRequest) FetchStakingRewardsRequest(fetchStakingRewardsRequest FetchStakingRewardsRequest) ApiFetchStakingRewardsRequest
func (ApiFetchStakingRewardsRequest) Limit ¶
func (r ApiFetchStakingRewardsRequest) Limit(limit int32) ApiFetchStakingRewardsRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.
func (ApiFetchStakingRewardsRequest) Page ¶
func (r ApiFetchStakingRewardsRequest) Page(page string) ApiFetchStakingRewardsRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiGetAddressBalanceRequest ¶
type ApiGetAddressBalanceRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
type ApiGetAddressRequest ¶
type ApiGetAddressRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
type ApiGetAssetRequest ¶
type ApiGetAssetRequest struct { ApiService AssetsAPI // contains filtered or unexported fields }
type ApiGetContractInvocationRequest ¶ added in v0.0.9
type ApiGetContractInvocationRequest struct { ApiService ContractInvocationsAPI // contains filtered or unexported fields }
func (ApiGetContractInvocationRequest) Execute ¶ added in v0.0.9
func (r ApiGetContractInvocationRequest) Execute() (*ContractInvocation, *http.Response, error)
type ApiGetCurrentUserRequest ¶
type ApiGetCurrentUserRequest struct { ApiService UsersAPI // contains filtered or unexported fields }
type ApiGetExternalAddressBalanceRequest ¶
type ApiGetExternalAddressBalanceRequest struct { ApiService ExternalAddressesAPI // contains filtered or unexported fields }
type ApiGetExternalStakingOperationRequest ¶
type ApiGetExternalStakingOperationRequest struct { ApiService StakeAPI // contains filtered or unexported fields }
func (ApiGetExternalStakingOperationRequest) Execute ¶
func (r ApiGetExternalStakingOperationRequest) Execute() (*StakingOperation, *http.Response, error)
type ApiGetNetworkRequest ¶
type ApiGetNetworkRequest struct { ApiService NetworksAPI // contains filtered or unexported fields }
type ApiGetPayloadSignatureRequest ¶ added in v0.0.9
type ApiGetPayloadSignatureRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
func (ApiGetPayloadSignatureRequest) Execute ¶ added in v0.0.9
func (r ApiGetPayloadSignatureRequest) Execute() (*PayloadSignature, *http.Response, error)
type ApiGetServerSignerRequest ¶
type ApiGetServerSignerRequest struct { ApiService ServerSignersAPI // contains filtered or unexported fields }
func (ApiGetServerSignerRequest) Execute ¶
func (r ApiGetServerSignerRequest) Execute() (*ServerSigner, *http.Response, error)
type ApiGetSmartContractRequest ¶ added in v0.0.9
type ApiGetSmartContractRequest struct { ApiService SmartContractsAPI // contains filtered or unexported fields }
func (ApiGetSmartContractRequest) Execute ¶ added in v0.0.9
func (r ApiGetSmartContractRequest) Execute() (*SmartContract, *http.Response, error)
type ApiGetStakingContextRequest ¶
type ApiGetStakingContextRequest struct { ApiService StakeAPI // contains filtered or unexported fields }
func (ApiGetStakingContextRequest) Execute ¶
func (r ApiGetStakingContextRequest) Execute() (*StakingContext, *http.Response, error)
func (ApiGetStakingContextRequest) GetStakingContextRequest ¶
func (r ApiGetStakingContextRequest) GetStakingContextRequest(getStakingContextRequest GetStakingContextRequest) ApiGetStakingContextRequest
type ApiGetStakingOperationRequest ¶
type ApiGetStakingOperationRequest struct { ApiService WalletStakeAPI // contains filtered or unexported fields }
func (ApiGetStakingOperationRequest) Execute ¶
func (r ApiGetStakingOperationRequest) Execute() (*StakingOperation, *http.Response, error)
type ApiGetTradeRequest ¶
type ApiGetTradeRequest struct { ApiService TradesAPI // contains filtered or unexported fields }
type ApiGetTransferRequest ¶
type ApiGetTransferRequest struct { ApiService TransfersAPI // contains filtered or unexported fields }
type ApiGetValidatorRequest ¶
type ApiGetValidatorRequest struct { ApiService ValidatorsAPI // contains filtered or unexported fields }
type ApiGetWalletBalanceRequest ¶
type ApiGetWalletBalanceRequest struct { ApiService WalletsAPI // contains filtered or unexported fields }
type ApiGetWalletRequest ¶
type ApiGetWalletRequest struct { ApiService WalletsAPI // contains filtered or unexported fields }
type ApiListAddressBalancesRequest ¶
type ApiListAddressBalancesRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
func (ApiListAddressBalancesRequest) Execute ¶
func (r ApiListAddressBalancesRequest) Execute() (*AddressBalanceList, *http.Response, error)
func (ApiListAddressBalancesRequest) Page ¶
func (r ApiListAddressBalancesRequest) Page(page string) ApiListAddressBalancesRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListAddressHistoricalBalanceRequest ¶
type ApiListAddressHistoricalBalanceRequest struct { ApiService BalanceHistoryAPI // contains filtered or unexported fields }
func (ApiListAddressHistoricalBalanceRequest) Execute ¶
func (r ApiListAddressHistoricalBalanceRequest) Execute() (*AddressHistoricalBalanceList, *http.Response, error)
func (ApiListAddressHistoricalBalanceRequest) Limit ¶
func (r ApiListAddressHistoricalBalanceRequest) Limit(limit int32) ApiListAddressHistoricalBalanceRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListAddressHistoricalBalanceRequest) Page ¶
func (r ApiListAddressHistoricalBalanceRequest) Page(page string) ApiListAddressHistoricalBalanceRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListAddressTransactionsRequest ¶ added in v0.0.9
type ApiListAddressTransactionsRequest struct { ApiService ExternalAddressesAPI // contains filtered or unexported fields }
func (ApiListAddressTransactionsRequest) Execute ¶ added in v0.0.9
func (r ApiListAddressTransactionsRequest) Execute() (*AddressTransactionList, *http.Response, error)
func (ApiListAddressTransactionsRequest) Limit ¶ added in v0.0.9
func (r ApiListAddressTransactionsRequest) Limit(limit int32) ApiListAddressTransactionsRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListAddressTransactionsRequest) Page ¶ added in v0.0.9
func (r ApiListAddressTransactionsRequest) Page(page string) ApiListAddressTransactionsRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListAddressesRequest ¶
type ApiListAddressesRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
func (ApiListAddressesRequest) Execute ¶
func (r ApiListAddressesRequest) Execute() (*AddressList, *http.Response, error)
func (ApiListAddressesRequest) Limit ¶
func (r ApiListAddressesRequest) Limit(limit int32) ApiListAddressesRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListAddressesRequest) Page ¶
func (r ApiListAddressesRequest) Page(page string) ApiListAddressesRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListContractEventsRequest ¶
type ApiListContractEventsRequest struct { ApiService ContractEventsAPI // contains filtered or unexported fields }
func (ApiListContractEventsRequest) ContractName ¶
func (r ApiListContractEventsRequest) ContractName(contractName string) ApiListContractEventsRequest
Case-sensitive name of the specific contract within the project
func (ApiListContractEventsRequest) EventName ¶
func (r ApiListContractEventsRequest) EventName(eventName string) ApiListContractEventsRequest
Case-sensitive name of the event to filter for in the contract's logs
func (ApiListContractEventsRequest) Execute ¶
func (r ApiListContractEventsRequest) Execute() (*ContractEventList, *http.Response, error)
func (ApiListContractEventsRequest) FromBlockHeight ¶
func (r ApiListContractEventsRequest) FromBlockHeight(fromBlockHeight int32) ApiListContractEventsRequest
Lower bound of the block range to query (inclusive)
func (ApiListContractEventsRequest) NextPage ¶
func (r ApiListContractEventsRequest) NextPage(nextPage string) ApiListContractEventsRequest
Pagination token for retrieving the next set of results
func (ApiListContractEventsRequest) ProtocolName ¶
func (r ApiListContractEventsRequest) ProtocolName(protocolName string) ApiListContractEventsRequest
Case-sensitive name of the blockchain protocol
func (ApiListContractEventsRequest) ToBlockHeight ¶
func (r ApiListContractEventsRequest) ToBlockHeight(toBlockHeight int32) ApiListContractEventsRequest
Upper bound of the block range to query (inclusive)
type ApiListContractInvocationsRequest ¶ added in v0.0.9
type ApiListContractInvocationsRequest struct { ApiService ContractInvocationsAPI // contains filtered or unexported fields }
func (ApiListContractInvocationsRequest) Execute ¶ added in v0.0.9
func (r ApiListContractInvocationsRequest) Execute() (*ContractInvocationList, *http.Response, error)
func (ApiListContractInvocationsRequest) Limit ¶ added in v0.0.9
func (r ApiListContractInvocationsRequest) Limit(limit int32) ApiListContractInvocationsRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListContractInvocationsRequest) Page ¶ added in v0.0.9
func (r ApiListContractInvocationsRequest) Page(page string) ApiListContractInvocationsRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListExternalAddressBalancesRequest ¶
type ApiListExternalAddressBalancesRequest struct { ApiService ExternalAddressesAPI // contains filtered or unexported fields }
func (ApiListExternalAddressBalancesRequest) Execute ¶
func (r ApiListExternalAddressBalancesRequest) Execute() (*AddressBalanceList, *http.Response, error)
func (ApiListExternalAddressBalancesRequest) Page ¶
func (r ApiListExternalAddressBalancesRequest) Page(page string) ApiListExternalAddressBalancesRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListPayloadSignaturesRequest ¶ added in v0.0.9
type ApiListPayloadSignaturesRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
func (ApiListPayloadSignaturesRequest) Execute ¶ added in v0.0.9
func (r ApiListPayloadSignaturesRequest) Execute() (*PayloadSignatureList, *http.Response, error)
func (ApiListPayloadSignaturesRequest) Limit ¶ added in v0.0.9
func (r ApiListPayloadSignaturesRequest) Limit(limit int32) ApiListPayloadSignaturesRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListPayloadSignaturesRequest) Page ¶ added in v0.0.9
func (r ApiListPayloadSignaturesRequest) Page(page string) ApiListPayloadSignaturesRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListServerSignerEventsRequest ¶
type ApiListServerSignerEventsRequest struct { ApiService ServerSignersAPI // contains filtered or unexported fields }
func (ApiListServerSignerEventsRequest) Execute ¶
func (r ApiListServerSignerEventsRequest) Execute() (*ServerSignerEventList, *http.Response, error)
func (ApiListServerSignerEventsRequest) Limit ¶
func (r ApiListServerSignerEventsRequest) Limit(limit int32) ApiListServerSignerEventsRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListServerSignerEventsRequest) Page ¶
func (r ApiListServerSignerEventsRequest) Page(page string) ApiListServerSignerEventsRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListServerSignersRequest ¶
type ApiListServerSignersRequest struct { ApiService ServerSignersAPI // contains filtered or unexported fields }
func (ApiListServerSignersRequest) Execute ¶
func (r ApiListServerSignersRequest) Execute() (*ServerSignerList, *http.Response, error)
func (ApiListServerSignersRequest) Limit ¶
func (r ApiListServerSignersRequest) Limit(limit int32) ApiListServerSignersRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListServerSignersRequest) Page ¶
func (r ApiListServerSignersRequest) Page(page string) ApiListServerSignersRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListSmartContractsRequest ¶ added in v0.0.9
type ApiListSmartContractsRequest struct { ApiService SmartContractsAPI // contains filtered or unexported fields }
func (ApiListSmartContractsRequest) Execute ¶ added in v0.0.9
func (r ApiListSmartContractsRequest) Execute() (*SmartContractList, *http.Response, error)
type ApiListTradesRequest ¶
type ApiListTradesRequest struct { ApiService TradesAPI // contains filtered or unexported fields }
func (ApiListTradesRequest) Execute ¶
func (r ApiListTradesRequest) Execute() (*TradeList, *http.Response, error)
func (ApiListTradesRequest) Limit ¶
func (r ApiListTradesRequest) Limit(limit int32) ApiListTradesRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListTradesRequest) Page ¶
func (r ApiListTradesRequest) Page(page string) ApiListTradesRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListTransfersRequest ¶
type ApiListTransfersRequest struct { ApiService TransfersAPI // contains filtered or unexported fields }
func (ApiListTransfersRequest) Execute ¶
func (r ApiListTransfersRequest) Execute() (*TransferList, *http.Response, error)
func (ApiListTransfersRequest) Limit ¶
func (r ApiListTransfersRequest) Limit(limit int32) ApiListTransfersRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListTransfersRequest) Page ¶
func (r ApiListTransfersRequest) Page(page string) ApiListTransfersRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListValidatorsRequest ¶
type ApiListValidatorsRequest struct { ApiService ValidatorsAPI // contains filtered or unexported fields }
func (ApiListValidatorsRequest) Execute ¶
func (r ApiListValidatorsRequest) Execute() (*ValidatorList, *http.Response, error)
func (ApiListValidatorsRequest) Limit ¶
func (r ApiListValidatorsRequest) Limit(limit int32) ApiListValidatorsRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 50.
func (ApiListValidatorsRequest) Page ¶
func (r ApiListValidatorsRequest) Page(page string) ApiListValidatorsRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
func (ApiListValidatorsRequest) Status ¶
func (r ApiListValidatorsRequest) Status(status ValidatorStatus) ApiListValidatorsRequest
A filter to list validators based on a status.
type ApiListWalletBalancesRequest ¶
type ApiListWalletBalancesRequest struct { ApiService WalletsAPI // contains filtered or unexported fields }
func (ApiListWalletBalancesRequest) Execute ¶
func (r ApiListWalletBalancesRequest) Execute() (*AddressBalanceList, *http.Response, error)
type ApiListWalletsRequest ¶
type ApiListWalletsRequest struct { ApiService WalletsAPI // contains filtered or unexported fields }
func (ApiListWalletsRequest) Execute ¶
func (r ApiListWalletsRequest) Execute() (*WalletList, *http.Response, error)
func (ApiListWalletsRequest) Limit ¶
func (r ApiListWalletsRequest) Limit(limit int32) ApiListWalletsRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListWalletsRequest) Page ¶
func (r ApiListWalletsRequest) Page(page string) ApiListWalletsRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiListWebhooksRequest ¶
type ApiListWebhooksRequest struct { ApiService WebhooksAPI // contains filtered or unexported fields }
func (ApiListWebhooksRequest) Execute ¶
func (r ApiListWebhooksRequest) Execute() (*WebhookList, *http.Response, error)
func (ApiListWebhooksRequest) Limit ¶
func (r ApiListWebhooksRequest) Limit(limit int32) ApiListWebhooksRequest
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
func (ApiListWebhooksRequest) Page ¶
func (r ApiListWebhooksRequest) Page(page string) ApiListWebhooksRequest
A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.
type ApiRequestExternalFaucetFundsRequest ¶
type ApiRequestExternalFaucetFundsRequest struct { ApiService ExternalAddressesAPI // contains filtered or unexported fields }
func (ApiRequestExternalFaucetFundsRequest) AssetId ¶ added in v0.0.9
func (r ApiRequestExternalFaucetFundsRequest) AssetId(assetId string) ApiRequestExternalFaucetFundsRequest
The ID of the asset to transfer from the faucet.
func (ApiRequestExternalFaucetFundsRequest) Execute ¶
func (r ApiRequestExternalFaucetFundsRequest) Execute() (*FaucetTransaction, *http.Response, error)
type ApiRequestFaucetFundsRequest ¶
type ApiRequestFaucetFundsRequest struct { ApiService AddressesAPI // contains filtered or unexported fields }
func (ApiRequestFaucetFundsRequest) AssetId ¶ added in v0.0.9
func (r ApiRequestFaucetFundsRequest) AssetId(assetId string) ApiRequestFaucetFundsRequest
The ID of the asset to transfer from the faucet.
func (ApiRequestFaucetFundsRequest) Execute ¶
func (r ApiRequestFaucetFundsRequest) Execute() (*FaucetTransaction, *http.Response, error)
type ApiSubmitServerSignerSeedEventResultRequest ¶
type ApiSubmitServerSignerSeedEventResultRequest struct { ApiService ServerSignersAPI // contains filtered or unexported fields }
func (ApiSubmitServerSignerSeedEventResultRequest) Execute ¶
func (r ApiSubmitServerSignerSeedEventResultRequest) Execute() (*SeedCreationEventResult, *http.Response, error)
func (ApiSubmitServerSignerSeedEventResultRequest) SeedCreationEventResult ¶
func (r ApiSubmitServerSignerSeedEventResultRequest) SeedCreationEventResult(seedCreationEventResult SeedCreationEventResult) ApiSubmitServerSignerSeedEventResultRequest
type ApiSubmitServerSignerSignatureEventResultRequest ¶
type ApiSubmitServerSignerSignatureEventResultRequest struct { ApiService ServerSignersAPI // contains filtered or unexported fields }
func (ApiSubmitServerSignerSignatureEventResultRequest) Execute ¶
func (r ApiSubmitServerSignerSignatureEventResultRequest) Execute() (*SignatureCreationEventResult, *http.Response, error)
func (ApiSubmitServerSignerSignatureEventResultRequest) SignatureCreationEventResult ¶
func (r ApiSubmitServerSignerSignatureEventResultRequest) SignatureCreationEventResult(signatureCreationEventResult SignatureCreationEventResult) ApiSubmitServerSignerSignatureEventResultRequest
type ApiUpdateWebhookRequest ¶
type ApiUpdateWebhookRequest struct { ApiService WebhooksAPI // contains filtered or unexported fields }
func (ApiUpdateWebhookRequest) Execute ¶
func (r ApiUpdateWebhookRequest) Execute() (*Webhook, *http.Response, error)
func (ApiUpdateWebhookRequest) UpdateWebhookRequest ¶
func (r ApiUpdateWebhookRequest) UpdateWebhookRequest(updateWebhookRequest UpdateWebhookRequest) ApiUpdateWebhookRequest
type Asset ¶
type Asset struct { // The ID of the blockchain network NetworkId string `json:"network_id"` // The ID for the asset on the network AssetId string `json:"asset_id"` // The number of decimals the asset supports. This is used to convert from atomic units to base units. Decimals *int32 `json:"decimals,omitempty"` // The optional contract address for the asset. This will be specified for smart contract-based assets, for example ERC20s. ContractAddress *string `json:"contract_address,omitempty"` }
Asset An asset onchain scoped to a particular network, e.g. ETH on base-sepolia, or the USDC ERC20 Token on ethereum-mainnet.
func NewAsset ¶
NewAsset instantiates a new Asset 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
func NewAssetWithDefaults ¶
func NewAssetWithDefaults() *Asset
NewAssetWithDefaults instantiates a new Asset 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
func (*Asset) GetAssetId ¶
GetAssetId returns the AssetId field value
func (*Asset) GetAssetIdOk ¶
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*Asset) GetContractAddress ¶
GetContractAddress returns the ContractAddress field value if set, zero value otherwise.
func (*Asset) GetContractAddressOk ¶
GetContractAddressOk returns a tuple with the ContractAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Asset) GetDecimals ¶
GetDecimals returns the Decimals field value if set, zero value otherwise.
func (*Asset) GetDecimalsOk ¶
GetDecimalsOk returns a tuple with the Decimals field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Asset) GetNetworkId ¶
GetNetworkId returns the NetworkId field value
func (*Asset) GetNetworkIdOk ¶
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*Asset) HasContractAddress ¶
HasContractAddress returns a boolean if a field has been set.
func (*Asset) HasDecimals ¶
HasDecimals returns a boolean if a field has been set.
func (Asset) MarshalJSON ¶
func (*Asset) SetContractAddress ¶
SetContractAddress gets a reference to the given string and assigns it to the ContractAddress field.
func (*Asset) SetDecimals ¶
SetDecimals gets a reference to the given int32 and assigns it to the Decimals field.
func (*Asset) UnmarshalJSON ¶
type AssetsAPI ¶
type AssetsAPI interface { /* GetAsset Get the asset for the specified asset ID. Get the asset for the specified asset ID. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param assetId The ID of the asset to fetch. This could be a symbol or an ERC20 contract address. @return ApiGetAssetRequest */ GetAsset(ctx context.Context, networkId string, assetId string) ApiGetAssetRequest // GetAssetExecute executes the request // @return Asset GetAssetExecute(r ApiGetAssetRequest) (*Asset, *http.Response, error) }
type AssetsAPIService ¶
type AssetsAPIService service
AssetsAPIService AssetsAPI service
func (*AssetsAPIService) GetAsset ¶
func (a *AssetsAPIService) GetAsset(ctx context.Context, networkId string, assetId string) ApiGetAssetRequest
GetAsset Get the asset for the specified asset ID.
Get the asset for the specified asset ID.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param assetId The ID of the asset to fetch. This could be a symbol or an ERC20 contract address. @return ApiGetAssetRequest
func (*AssetsAPIService) GetAssetExecute ¶
func (a *AssetsAPIService) GetAssetExecute(r ApiGetAssetRequest) (*Asset, *http.Response, error)
Execute executes the request
@return Asset
type Balance ¶
type Balance struct { // The amount in the atomic units of the asset Amount string `json:"amount"` Asset Asset `json:"asset"` }
Balance The balance of an asset onchain
func NewBalance ¶
NewBalance instantiates a new Balance 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
func NewBalanceWithDefaults ¶
func NewBalanceWithDefaults() *Balance
NewBalanceWithDefaults instantiates a new Balance 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
func (*Balance) GetAmountOk ¶
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*Balance) GetAssetOk ¶
GetAssetOk returns a tuple with the Asset field value and a boolean to check if the value has been set.
func (Balance) MarshalJSON ¶
func (*Balance) UnmarshalJSON ¶
type BalanceHistoryAPI ¶ added in v0.0.9
type BalanceHistoryAPI interface { /* ListAddressHistoricalBalance Get address balance history for asset List the historical balance of an asset in a specific address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the historical balance for. @param assetId The symbol of the asset to fetch the historical balance for. @return ApiListAddressHistoricalBalanceRequest */ ListAddressHistoricalBalance(ctx context.Context, networkId string, addressId string, assetId string) ApiListAddressHistoricalBalanceRequest // ListAddressHistoricalBalanceExecute executes the request // @return AddressHistoricalBalanceList ListAddressHistoricalBalanceExecute(r ApiListAddressHistoricalBalanceRequest) (*AddressHistoricalBalanceList, *http.Response, error) }
type BalanceHistoryAPIService ¶ added in v0.0.9
type BalanceHistoryAPIService service
BalanceHistoryAPIService BalanceHistoryAPI service
func (*BalanceHistoryAPIService) ListAddressHistoricalBalance ¶ added in v0.0.9
func (a *BalanceHistoryAPIService) ListAddressHistoricalBalance(ctx context.Context, networkId string, addressId string, assetId string) ApiListAddressHistoricalBalanceRequest
ListAddressHistoricalBalance Get address balance history for asset
List the historical balance of an asset in a specific address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the historical balance for. @param assetId The symbol of the asset to fetch the historical balance for. @return ApiListAddressHistoricalBalanceRequest
func (*BalanceHistoryAPIService) ListAddressHistoricalBalanceExecute ¶ added in v0.0.9
func (a *BalanceHistoryAPIService) ListAddressHistoricalBalanceExecute(r ApiListAddressHistoricalBalanceRequest) (*AddressHistoricalBalanceList, *http.Response, error)
Execute executes the request
@return AddressHistoricalBalanceList
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 BroadcastContractInvocationRequest ¶ added in v0.0.9
type BroadcastContractInvocationRequest struct { // The hex-encoded signed payload of the contract invocation SignedPayload string `json:"signed_payload"` }
BroadcastContractInvocationRequest struct for BroadcastContractInvocationRequest
func NewBroadcastContractInvocationRequest ¶ added in v0.0.9
func NewBroadcastContractInvocationRequest(signedPayload string) *BroadcastContractInvocationRequest
NewBroadcastContractInvocationRequest instantiates a new BroadcastContractInvocationRequest 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
func NewBroadcastContractInvocationRequestWithDefaults ¶ added in v0.0.9
func NewBroadcastContractInvocationRequestWithDefaults() *BroadcastContractInvocationRequest
NewBroadcastContractInvocationRequestWithDefaults instantiates a new BroadcastContractInvocationRequest 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
func (*BroadcastContractInvocationRequest) GetSignedPayload ¶ added in v0.0.9
func (o *BroadcastContractInvocationRequest) GetSignedPayload() string
GetSignedPayload returns the SignedPayload field value
func (*BroadcastContractInvocationRequest) GetSignedPayloadOk ¶ added in v0.0.9
func (o *BroadcastContractInvocationRequest) GetSignedPayloadOk() (*string, bool)
GetSignedPayloadOk returns a tuple with the SignedPayload field value and a boolean to check if the value has been set.
func (BroadcastContractInvocationRequest) MarshalJSON ¶ added in v0.0.9
func (o BroadcastContractInvocationRequest) MarshalJSON() ([]byte, error)
func (*BroadcastContractInvocationRequest) SetSignedPayload ¶ added in v0.0.9
func (o *BroadcastContractInvocationRequest) SetSignedPayload(v string)
SetSignedPayload sets field value
func (BroadcastContractInvocationRequest) ToMap ¶ added in v0.0.9
func (o BroadcastContractInvocationRequest) ToMap() (map[string]interface{}, error)
func (*BroadcastContractInvocationRequest) UnmarshalJSON ¶ added in v0.0.9
func (o *BroadcastContractInvocationRequest) UnmarshalJSON(data []byte) (err error)
type BroadcastStakingOperationRequest ¶
type BroadcastStakingOperationRequest struct { // The hex-encoded signed payload of the staking operation. SignedPayload string `json:"signed_payload"` // The index in the transaction array of the staking operation. TransactionIndex int32 `json:"transaction_index"` }
BroadcastStakingOperationRequest struct for BroadcastStakingOperationRequest
func NewBroadcastStakingOperationRequest ¶
func NewBroadcastStakingOperationRequest(signedPayload string, transactionIndex int32) *BroadcastStakingOperationRequest
NewBroadcastStakingOperationRequest instantiates a new BroadcastStakingOperationRequest 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
func NewBroadcastStakingOperationRequestWithDefaults ¶
func NewBroadcastStakingOperationRequestWithDefaults() *BroadcastStakingOperationRequest
NewBroadcastStakingOperationRequestWithDefaults instantiates a new BroadcastStakingOperationRequest 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
func (*BroadcastStakingOperationRequest) GetSignedPayload ¶
func (o *BroadcastStakingOperationRequest) GetSignedPayload() string
GetSignedPayload returns the SignedPayload field value
func (*BroadcastStakingOperationRequest) GetSignedPayloadOk ¶
func (o *BroadcastStakingOperationRequest) GetSignedPayloadOk() (*string, bool)
GetSignedPayloadOk returns a tuple with the SignedPayload field value and a boolean to check if the value has been set.
func (*BroadcastStakingOperationRequest) GetTransactionIndex ¶
func (o *BroadcastStakingOperationRequest) GetTransactionIndex() int32
GetTransactionIndex returns the TransactionIndex field value
func (*BroadcastStakingOperationRequest) GetTransactionIndexOk ¶
func (o *BroadcastStakingOperationRequest) GetTransactionIndexOk() (*int32, bool)
GetTransactionIndexOk returns a tuple with the TransactionIndex field value and a boolean to check if the value has been set.
func (BroadcastStakingOperationRequest) MarshalJSON ¶
func (o BroadcastStakingOperationRequest) MarshalJSON() ([]byte, error)
func (*BroadcastStakingOperationRequest) SetSignedPayload ¶
func (o *BroadcastStakingOperationRequest) SetSignedPayload(v string)
SetSignedPayload sets field value
func (*BroadcastStakingOperationRequest) SetTransactionIndex ¶
func (o *BroadcastStakingOperationRequest) SetTransactionIndex(v int32)
SetTransactionIndex sets field value
func (BroadcastStakingOperationRequest) ToMap ¶
func (o BroadcastStakingOperationRequest) ToMap() (map[string]interface{}, error)
func (*BroadcastStakingOperationRequest) UnmarshalJSON ¶
func (o *BroadcastStakingOperationRequest) UnmarshalJSON(data []byte) (err error)
type BroadcastTradeRequest ¶
type BroadcastTradeRequest struct { // The hex-encoded signed payload of the trade SignedPayload string `json:"signed_payload"` // The hex-encoded signed payload of the approval transaction ApproveTransactionSignedPayload *string `json:"approve_transaction_signed_payload,omitempty"` }
BroadcastTradeRequest struct for BroadcastTradeRequest
func NewBroadcastTradeRequest ¶
func NewBroadcastTradeRequest(signedPayload string) *BroadcastTradeRequest
NewBroadcastTradeRequest instantiates a new BroadcastTradeRequest 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
func NewBroadcastTradeRequestWithDefaults ¶
func NewBroadcastTradeRequestWithDefaults() *BroadcastTradeRequest
NewBroadcastTradeRequestWithDefaults instantiates a new BroadcastTradeRequest 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
func (*BroadcastTradeRequest) GetApproveTransactionSignedPayload ¶
func (o *BroadcastTradeRequest) GetApproveTransactionSignedPayload() string
GetApproveTransactionSignedPayload returns the ApproveTransactionSignedPayload field value if set, zero value otherwise.
func (*BroadcastTradeRequest) GetApproveTransactionSignedPayloadOk ¶
func (o *BroadcastTradeRequest) GetApproveTransactionSignedPayloadOk() (*string, bool)
GetApproveTransactionSignedPayloadOk returns a tuple with the ApproveTransactionSignedPayload field value if set, nil otherwise and a boolean to check if the value has been set.
func (*BroadcastTradeRequest) GetSignedPayload ¶
func (o *BroadcastTradeRequest) GetSignedPayload() string
GetSignedPayload returns the SignedPayload field value
func (*BroadcastTradeRequest) GetSignedPayloadOk ¶
func (o *BroadcastTradeRequest) GetSignedPayloadOk() (*string, bool)
GetSignedPayloadOk returns a tuple with the SignedPayload field value and a boolean to check if the value has been set.
func (*BroadcastTradeRequest) HasApproveTransactionSignedPayload ¶
func (o *BroadcastTradeRequest) HasApproveTransactionSignedPayload() bool
HasApproveTransactionSignedPayload returns a boolean if a field has been set.
func (BroadcastTradeRequest) MarshalJSON ¶
func (o BroadcastTradeRequest) MarshalJSON() ([]byte, error)
func (*BroadcastTradeRequest) SetApproveTransactionSignedPayload ¶
func (o *BroadcastTradeRequest) SetApproveTransactionSignedPayload(v string)
SetApproveTransactionSignedPayload gets a reference to the given string and assigns it to the ApproveTransactionSignedPayload field.
func (*BroadcastTradeRequest) SetSignedPayload ¶
func (o *BroadcastTradeRequest) SetSignedPayload(v string)
SetSignedPayload sets field value
func (BroadcastTradeRequest) ToMap ¶
func (o BroadcastTradeRequest) ToMap() (map[string]interface{}, error)
func (*BroadcastTradeRequest) UnmarshalJSON ¶
func (o *BroadcastTradeRequest) UnmarshalJSON(data []byte) (err error)
type BroadcastTransferRequest ¶
type BroadcastTransferRequest struct { // The hex-encoded signed payload of the transfer SignedPayload string `json:"signed_payload"` }
BroadcastTransferRequest struct for BroadcastTransferRequest
func NewBroadcastTransferRequest ¶
func NewBroadcastTransferRequest(signedPayload string) *BroadcastTransferRequest
NewBroadcastTransferRequest instantiates a new BroadcastTransferRequest 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
func NewBroadcastTransferRequestWithDefaults ¶
func NewBroadcastTransferRequestWithDefaults() *BroadcastTransferRequest
NewBroadcastTransferRequestWithDefaults instantiates a new BroadcastTransferRequest 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
func (*BroadcastTransferRequest) GetSignedPayload ¶
func (o *BroadcastTransferRequest) GetSignedPayload() string
GetSignedPayload returns the SignedPayload field value
func (*BroadcastTransferRequest) GetSignedPayloadOk ¶
func (o *BroadcastTransferRequest) GetSignedPayloadOk() (*string, bool)
GetSignedPayloadOk returns a tuple with the SignedPayload field value and a boolean to check if the value has been set.
func (BroadcastTransferRequest) MarshalJSON ¶
func (o BroadcastTransferRequest) MarshalJSON() ([]byte, error)
func (*BroadcastTransferRequest) SetSignedPayload ¶
func (o *BroadcastTransferRequest) SetSignedPayload(v string)
SetSignedPayload sets field value
func (BroadcastTransferRequest) ToMap ¶
func (o BroadcastTransferRequest) ToMap() (map[string]interface{}, error)
func (*BroadcastTransferRequest) UnmarshalJSON ¶
func (o *BroadcastTransferRequest) UnmarshalJSON(data []byte) (err error)
type BuildStakingOperationRequest ¶
type BuildStakingOperationRequest struct { // The ID of the blockchain network NetworkId string `json:"network_id"` // The ID of the asset being staked AssetId string `json:"asset_id"` // The onchain address from which the staking transaction originates and is responsible for signing the transaction. AddressId string `json:"address_id"` // The type of staking operation Action string `json:"action"` Options map[string]string `json:"options"` }
BuildStakingOperationRequest struct for BuildStakingOperationRequest
func NewBuildStakingOperationRequest ¶
func NewBuildStakingOperationRequest(networkId string, assetId string, addressId string, action string, options map[string]string) *BuildStakingOperationRequest
NewBuildStakingOperationRequest instantiates a new BuildStakingOperationRequest 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
func NewBuildStakingOperationRequestWithDefaults ¶
func NewBuildStakingOperationRequestWithDefaults() *BuildStakingOperationRequest
NewBuildStakingOperationRequestWithDefaults instantiates a new BuildStakingOperationRequest 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
func (*BuildStakingOperationRequest) GetAction ¶
func (o *BuildStakingOperationRequest) GetAction() string
GetAction returns the Action field value
func (*BuildStakingOperationRequest) GetActionOk ¶
func (o *BuildStakingOperationRequest) GetActionOk() (*string, bool)
GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.
func (*BuildStakingOperationRequest) GetAddressId ¶
func (o *BuildStakingOperationRequest) GetAddressId() string
GetAddressId returns the AddressId field value
func (*BuildStakingOperationRequest) GetAddressIdOk ¶
func (o *BuildStakingOperationRequest) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*BuildStakingOperationRequest) GetAssetId ¶
func (o *BuildStakingOperationRequest) GetAssetId() string
GetAssetId returns the AssetId field value
func (*BuildStakingOperationRequest) GetAssetIdOk ¶
func (o *BuildStakingOperationRequest) GetAssetIdOk() (*string, bool)
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*BuildStakingOperationRequest) GetNetworkId ¶
func (o *BuildStakingOperationRequest) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*BuildStakingOperationRequest) GetNetworkIdOk ¶
func (o *BuildStakingOperationRequest) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*BuildStakingOperationRequest) GetOptions ¶
func (o *BuildStakingOperationRequest) GetOptions() map[string]string
GetOptions returns the Options field value
func (*BuildStakingOperationRequest) GetOptionsOk ¶
func (o *BuildStakingOperationRequest) GetOptionsOk() (*map[string]string, bool)
GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.
func (BuildStakingOperationRequest) MarshalJSON ¶
func (o BuildStakingOperationRequest) MarshalJSON() ([]byte, error)
func (*BuildStakingOperationRequest) SetAction ¶
func (o *BuildStakingOperationRequest) SetAction(v string)
SetAction sets field value
func (*BuildStakingOperationRequest) SetAddressId ¶
func (o *BuildStakingOperationRequest) SetAddressId(v string)
SetAddressId sets field value
func (*BuildStakingOperationRequest) SetAssetId ¶
func (o *BuildStakingOperationRequest) SetAssetId(v string)
SetAssetId sets field value
func (*BuildStakingOperationRequest) SetNetworkId ¶
func (o *BuildStakingOperationRequest) SetNetworkId(v string)
SetNetworkId sets field value
func (*BuildStakingOperationRequest) SetOptions ¶
func (o *BuildStakingOperationRequest) SetOptions(v map[string]string)
SetOptions sets field value
func (BuildStakingOperationRequest) ToMap ¶
func (o BuildStakingOperationRequest) ToMap() (map[string]interface{}, error)
func (*BuildStakingOperationRequest) UnmarshalJSON ¶
func (o *BuildStakingOperationRequest) UnmarshalJSON(data []byte) (err error)
type Configuration ¶
type Configuration struct { Host string `json:"host,omitempty"` Scheme string `json:"scheme,omitempty"` DefaultHeader map[string]string `json:"defaultHeader,omitempty"` UserAgent string `json:"userAgent,omitempty"` Debug bool `json:"debug,omitempty"` Servers ServerConfigurations OperationServers map[string]ServerConfigurations HTTPClient *http.Client }
Configuration stores the configuration of the API client
func NewConfiguration ¶
func NewConfiguration() *Configuration
NewConfiguration returns a new Configuration object
func (*Configuration) AddDefaultHeader ¶
func (c *Configuration) AddDefaultHeader(key string, value string)
AddDefaultHeader adds a new HTTP header to the default header in the request
func (*Configuration) ServerURLWithContext ¶
ServerURLWithContext returns a new server URL given an endpoint
type ContractEvent ¶
type ContractEvent struct { // The name of the blockchain network NetworkId string `json:"network_id"` // The name of the blockchain project or protocol ProtocolName string `json:"protocol_name"` // The name of the specific contract within the project ContractName string `json:"contract_name"` // The name of the event emitted by the contract EventName string `json:"event_name"` // The signature of the event, including parameter types Sig string `json:"sig"` // The first four bytes of the Keccak hash of the event signature FourBytes string `json:"four_bytes"` // The EVM address of the smart contract ContractAddress string `json:"contract_address"` // The timestamp of the block in which the event was emitted BlockTime time.Time `json:"block_time"` // The block number in which the event was emitted BlockHeight int32 `json:"block_height"` // The transaction hash in which the event was emitted TxHash string `json:"tx_hash"` // The index of the transaction within the block TxIndex int32 `json:"tx_index"` // The index of the event within the transaction EventIndex int32 `json:"event_index"` // The event data in a stringified format Data string `json:"data"` }
ContractEvent Represents a single decoded event emitted by a smart contract
func NewContractEvent ¶
func NewContractEvent(networkId string, protocolName string, contractName string, eventName string, sig string, fourBytes string, contractAddress string, blockTime time.Time, blockHeight int32, txHash string, txIndex int32, eventIndex int32, data string) *ContractEvent
NewContractEvent instantiates a new ContractEvent 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
func NewContractEventWithDefaults ¶
func NewContractEventWithDefaults() *ContractEvent
NewContractEventWithDefaults instantiates a new ContractEvent 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
func (*ContractEvent) GetBlockHeight ¶
func (o *ContractEvent) GetBlockHeight() int32
GetBlockHeight returns the BlockHeight field value
func (*ContractEvent) GetBlockHeightOk ¶
func (o *ContractEvent) GetBlockHeightOk() (*int32, bool)
GetBlockHeightOk returns a tuple with the BlockHeight field value and a boolean to check if the value has been set.
func (*ContractEvent) GetBlockTime ¶
func (o *ContractEvent) GetBlockTime() time.Time
GetBlockTime returns the BlockTime field value
func (*ContractEvent) GetBlockTimeOk ¶
func (o *ContractEvent) GetBlockTimeOk() (*time.Time, bool)
GetBlockTimeOk returns a tuple with the BlockTime field value and a boolean to check if the value has been set.
func (*ContractEvent) GetContractAddress ¶
func (o *ContractEvent) GetContractAddress() string
GetContractAddress returns the ContractAddress field value
func (*ContractEvent) GetContractAddressOk ¶
func (o *ContractEvent) GetContractAddressOk() (*string, bool)
GetContractAddressOk returns a tuple with the ContractAddress field value and a boolean to check if the value has been set.
func (*ContractEvent) GetContractName ¶
func (o *ContractEvent) GetContractName() string
GetContractName returns the ContractName field value
func (*ContractEvent) GetContractNameOk ¶
func (o *ContractEvent) GetContractNameOk() (*string, bool)
GetContractNameOk returns a tuple with the ContractName field value and a boolean to check if the value has been set.
func (*ContractEvent) GetData ¶
func (o *ContractEvent) GetData() string
GetData returns the Data field value
func (*ContractEvent) GetDataOk ¶
func (o *ContractEvent) GetDataOk() (*string, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*ContractEvent) GetEventIndex ¶
func (o *ContractEvent) GetEventIndex() int32
GetEventIndex returns the EventIndex field value
func (*ContractEvent) GetEventIndexOk ¶
func (o *ContractEvent) GetEventIndexOk() (*int32, bool)
GetEventIndexOk returns a tuple with the EventIndex field value and a boolean to check if the value has been set.
func (*ContractEvent) GetEventName ¶
func (o *ContractEvent) GetEventName() string
GetEventName returns the EventName field value
func (*ContractEvent) GetEventNameOk ¶
func (o *ContractEvent) GetEventNameOk() (*string, bool)
GetEventNameOk returns a tuple with the EventName field value and a boolean to check if the value has been set.
func (*ContractEvent) GetFourBytes ¶
func (o *ContractEvent) GetFourBytes() string
GetFourBytes returns the FourBytes field value
func (*ContractEvent) GetFourBytesOk ¶
func (o *ContractEvent) GetFourBytesOk() (*string, bool)
GetFourBytesOk returns a tuple with the FourBytes field value and a boolean to check if the value has been set.
func (*ContractEvent) GetNetworkId ¶
func (o *ContractEvent) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*ContractEvent) GetNetworkIdOk ¶
func (o *ContractEvent) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*ContractEvent) GetProtocolName ¶
func (o *ContractEvent) GetProtocolName() string
GetProtocolName returns the ProtocolName field value
func (*ContractEvent) GetProtocolNameOk ¶
func (o *ContractEvent) GetProtocolNameOk() (*string, bool)
GetProtocolNameOk returns a tuple with the ProtocolName field value and a boolean to check if the value has been set.
func (*ContractEvent) GetSig ¶
func (o *ContractEvent) GetSig() string
GetSig returns the Sig field value
func (*ContractEvent) GetSigOk ¶
func (o *ContractEvent) GetSigOk() (*string, bool)
GetSigOk returns a tuple with the Sig field value and a boolean to check if the value has been set.
func (*ContractEvent) GetTxHash ¶
func (o *ContractEvent) GetTxHash() string
GetTxHash returns the TxHash field value
func (*ContractEvent) GetTxHashOk ¶
func (o *ContractEvent) GetTxHashOk() (*string, bool)
GetTxHashOk returns a tuple with the TxHash field value and a boolean to check if the value has been set.
func (*ContractEvent) GetTxIndex ¶
func (o *ContractEvent) GetTxIndex() int32
GetTxIndex returns the TxIndex field value
func (*ContractEvent) GetTxIndexOk ¶
func (o *ContractEvent) GetTxIndexOk() (*int32, bool)
GetTxIndexOk returns a tuple with the TxIndex field value and a boolean to check if the value has been set.
func (ContractEvent) MarshalJSON ¶
func (o ContractEvent) MarshalJSON() ([]byte, error)
func (*ContractEvent) SetBlockHeight ¶
func (o *ContractEvent) SetBlockHeight(v int32)
SetBlockHeight sets field value
func (*ContractEvent) SetBlockTime ¶
func (o *ContractEvent) SetBlockTime(v time.Time)
SetBlockTime sets field value
func (*ContractEvent) SetContractAddress ¶
func (o *ContractEvent) SetContractAddress(v string)
SetContractAddress sets field value
func (*ContractEvent) SetContractName ¶
func (o *ContractEvent) SetContractName(v string)
SetContractName sets field value
func (*ContractEvent) SetEventIndex ¶
func (o *ContractEvent) SetEventIndex(v int32)
SetEventIndex sets field value
func (*ContractEvent) SetEventName ¶
func (o *ContractEvent) SetEventName(v string)
SetEventName sets field value
func (*ContractEvent) SetFourBytes ¶
func (o *ContractEvent) SetFourBytes(v string)
SetFourBytes sets field value
func (*ContractEvent) SetNetworkId ¶
func (o *ContractEvent) SetNetworkId(v string)
SetNetworkId sets field value
func (*ContractEvent) SetProtocolName ¶
func (o *ContractEvent) SetProtocolName(v string)
SetProtocolName sets field value
func (*ContractEvent) SetTxHash ¶
func (o *ContractEvent) SetTxHash(v string)
SetTxHash sets field value
func (*ContractEvent) SetTxIndex ¶
func (o *ContractEvent) SetTxIndex(v int32)
SetTxIndex sets field value
func (ContractEvent) ToMap ¶
func (o ContractEvent) ToMap() (map[string]interface{}, error)
func (*ContractEvent) UnmarshalJSON ¶
func (o *ContractEvent) UnmarshalJSON(data []byte) (err error)
type ContractEventList ¶
type ContractEventList struct { // An array of ContractEvent objects Data []ContractEvent `json:"data"` // The page token to be used to fetch the next page NextPage string `json:"next_page"` // True if this list has another page of items after this one that can be fetched HasMore bool `json:"has_more"` }
ContractEventList A list of contract events with pagination information
func NewContractEventList ¶
func NewContractEventList(data []ContractEvent, nextPage string, hasMore bool) *ContractEventList
NewContractEventList instantiates a new ContractEventList 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
func NewContractEventListWithDefaults ¶
func NewContractEventListWithDefaults() *ContractEventList
NewContractEventListWithDefaults instantiates a new ContractEventList 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
func (*ContractEventList) GetData ¶
func (o *ContractEventList) GetData() []ContractEvent
GetData returns the Data field value
func (*ContractEventList) GetDataOk ¶
func (o *ContractEventList) GetDataOk() ([]ContractEvent, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*ContractEventList) GetHasMore ¶
func (o *ContractEventList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*ContractEventList) GetHasMoreOk ¶
func (o *ContractEventList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*ContractEventList) GetNextPage ¶
func (o *ContractEventList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*ContractEventList) GetNextPageOk ¶
func (o *ContractEventList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (ContractEventList) MarshalJSON ¶
func (o ContractEventList) MarshalJSON() ([]byte, error)
func (*ContractEventList) SetData ¶
func (o *ContractEventList) SetData(v []ContractEvent)
SetData sets field value
func (*ContractEventList) SetHasMore ¶
func (o *ContractEventList) SetHasMore(v bool)
SetHasMore sets field value
func (*ContractEventList) SetNextPage ¶
func (o *ContractEventList) SetNextPage(v string)
SetNextPage sets field value
func (ContractEventList) ToMap ¶
func (o ContractEventList) ToMap() (map[string]interface{}, error)
func (*ContractEventList) UnmarshalJSON ¶
func (o *ContractEventList) UnmarshalJSON(data []byte) (err error)
type ContractEventsAPI ¶
type ContractEventsAPI interface { /* ListContractEvents List contract events Retrieve events for a specific contract @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId Unique identifier for the blockchain network @param contractAddress EVM address of the smart contract (42 characters, including '0x', in lowercase) @return ApiListContractEventsRequest */ ListContractEvents(ctx context.Context, networkId string, contractAddress string) ApiListContractEventsRequest // ListContractEventsExecute executes the request // @return ContractEventList ListContractEventsExecute(r ApiListContractEventsRequest) (*ContractEventList, *http.Response, error) }
type ContractEventsAPIService ¶
type ContractEventsAPIService service
ContractEventsAPIService ContractEventsAPI service
func (*ContractEventsAPIService) ListContractEvents ¶
func (a *ContractEventsAPIService) ListContractEvents(ctx context.Context, networkId string, contractAddress string) ApiListContractEventsRequest
ListContractEvents List contract events
Retrieve events for a specific contract
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId Unique identifier for the blockchain network @param contractAddress EVM address of the smart contract (42 characters, including '0x', in lowercase) @return ApiListContractEventsRequest
func (*ContractEventsAPIService) ListContractEventsExecute ¶
func (a *ContractEventsAPIService) ListContractEventsExecute(r ApiListContractEventsRequest) (*ContractEventList, *http.Response, error)
Execute executes the request
@return ContractEventList
type ContractInvocation ¶ added in v0.0.9
type ContractInvocation struct { // The ID of the blockchain network. NetworkId string `json:"network_id"` // The ID of the wallet that owns the address. WalletId string `json:"wallet_id"` // The onchain address of the address invoking the contract. AddressId string `json:"address_id"` // The ID of the contract invocation. ContractInvocationId string `json:"contract_invocation_id"` // The onchain address of the contract. ContractAddress string `json:"contract_address"` // The method to be invoked on the contract. Method string `json:"method"` // The JSON-encoded arguments to pass to the contract method. The keys should be the argument names and the values should be the argument values. Args string `json:"args"` // The JSON-encoded ABI of the contract. Abi *string `json:"abi,omitempty"` // The amount to send to the contract for a payable method Amount string `json:"amount"` Transaction Transaction `json:"transaction"` }
ContractInvocation A contract invocation onchain.
func NewContractInvocation ¶ added in v0.0.9
func NewContractInvocation(networkId string, walletId string, addressId string, contractInvocationId string, contractAddress string, method string, args string, amount string, transaction Transaction) *ContractInvocation
NewContractInvocation instantiates a new ContractInvocation 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
func NewContractInvocationWithDefaults ¶ added in v0.0.9
func NewContractInvocationWithDefaults() *ContractInvocation
NewContractInvocationWithDefaults instantiates a new ContractInvocation 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
func (*ContractInvocation) GetAbi ¶ added in v0.0.9
func (o *ContractInvocation) GetAbi() string
GetAbi returns the Abi field value if set, zero value otherwise.
func (*ContractInvocation) GetAbiOk ¶ added in v0.0.9
func (o *ContractInvocation) GetAbiOk() (*string, bool)
GetAbiOk returns a tuple with the Abi field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ContractInvocation) GetAddressId ¶ added in v0.0.9
func (o *ContractInvocation) GetAddressId() string
GetAddressId returns the AddressId field value
func (*ContractInvocation) GetAddressIdOk ¶ added in v0.0.9
func (o *ContractInvocation) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetAmount ¶ added in v0.0.9
func (o *ContractInvocation) GetAmount() string
GetAmount returns the Amount field value
func (*ContractInvocation) GetAmountOk ¶ added in v0.0.9
func (o *ContractInvocation) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetArgs ¶ added in v0.0.9
func (o *ContractInvocation) GetArgs() string
GetArgs returns the Args field value
func (*ContractInvocation) GetArgsOk ¶ added in v0.0.9
func (o *ContractInvocation) GetArgsOk() (*string, bool)
GetArgsOk returns a tuple with the Args field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetContractAddress ¶ added in v0.0.9
func (o *ContractInvocation) GetContractAddress() string
GetContractAddress returns the ContractAddress field value
func (*ContractInvocation) GetContractAddressOk ¶ added in v0.0.9
func (o *ContractInvocation) GetContractAddressOk() (*string, bool)
GetContractAddressOk returns a tuple with the ContractAddress field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetContractInvocationId ¶ added in v0.0.9
func (o *ContractInvocation) GetContractInvocationId() string
GetContractInvocationId returns the ContractInvocationId field value
func (*ContractInvocation) GetContractInvocationIdOk ¶ added in v0.0.9
func (o *ContractInvocation) GetContractInvocationIdOk() (*string, bool)
GetContractInvocationIdOk returns a tuple with the ContractInvocationId field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetMethod ¶ added in v0.0.9
func (o *ContractInvocation) GetMethod() string
GetMethod returns the Method field value
func (*ContractInvocation) GetMethodOk ¶ added in v0.0.9
func (o *ContractInvocation) GetMethodOk() (*string, bool)
GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetNetworkId ¶ added in v0.0.9
func (o *ContractInvocation) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*ContractInvocation) GetNetworkIdOk ¶ added in v0.0.9
func (o *ContractInvocation) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetTransaction ¶ added in v0.0.9
func (o *ContractInvocation) GetTransaction() Transaction
GetTransaction returns the Transaction field value
func (*ContractInvocation) GetTransactionOk ¶ added in v0.0.9
func (o *ContractInvocation) GetTransactionOk() (*Transaction, bool)
GetTransactionOk returns a tuple with the Transaction field value and a boolean to check if the value has been set.
func (*ContractInvocation) GetWalletId ¶ added in v0.0.9
func (o *ContractInvocation) GetWalletId() string
GetWalletId returns the WalletId field value
func (*ContractInvocation) GetWalletIdOk ¶ added in v0.0.9
func (o *ContractInvocation) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*ContractInvocation) HasAbi ¶ added in v0.0.9
func (o *ContractInvocation) HasAbi() bool
HasAbi returns a boolean if a field has been set.
func (ContractInvocation) MarshalJSON ¶ added in v0.0.9
func (o ContractInvocation) MarshalJSON() ([]byte, error)
func (*ContractInvocation) SetAbi ¶ added in v0.0.9
func (o *ContractInvocation) SetAbi(v string)
SetAbi gets a reference to the given string and assigns it to the Abi field.
func (*ContractInvocation) SetAddressId ¶ added in v0.0.9
func (o *ContractInvocation) SetAddressId(v string)
SetAddressId sets field value
func (*ContractInvocation) SetAmount ¶ added in v0.0.9
func (o *ContractInvocation) SetAmount(v string)
SetAmount sets field value
func (*ContractInvocation) SetArgs ¶ added in v0.0.9
func (o *ContractInvocation) SetArgs(v string)
SetArgs sets field value
func (*ContractInvocation) SetContractAddress ¶ added in v0.0.9
func (o *ContractInvocation) SetContractAddress(v string)
SetContractAddress sets field value
func (*ContractInvocation) SetContractInvocationId ¶ added in v0.0.9
func (o *ContractInvocation) SetContractInvocationId(v string)
SetContractInvocationId sets field value
func (*ContractInvocation) SetMethod ¶ added in v0.0.9
func (o *ContractInvocation) SetMethod(v string)
SetMethod sets field value
func (*ContractInvocation) SetNetworkId ¶ added in v0.0.9
func (o *ContractInvocation) SetNetworkId(v string)
SetNetworkId sets field value
func (*ContractInvocation) SetTransaction ¶ added in v0.0.9
func (o *ContractInvocation) SetTransaction(v Transaction)
SetTransaction sets field value
func (*ContractInvocation) SetWalletId ¶ added in v0.0.9
func (o *ContractInvocation) SetWalletId(v string)
SetWalletId sets field value
func (ContractInvocation) ToMap ¶ added in v0.0.9
func (o ContractInvocation) ToMap() (map[string]interface{}, error)
func (*ContractInvocation) UnmarshalJSON ¶ added in v0.0.9
func (o *ContractInvocation) UnmarshalJSON(data []byte) (err error)
type ContractInvocationList ¶ added in v0.0.9
type ContractInvocationList struct { Data []ContractInvocation `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of contract invocations for the address in the wallet. TotalCount int32 `json:"total_count"` }
ContractInvocationList struct for ContractInvocationList
func NewContractInvocationList ¶ added in v0.0.9
func NewContractInvocationList(data []ContractInvocation, hasMore bool, nextPage string, totalCount int32) *ContractInvocationList
NewContractInvocationList instantiates a new ContractInvocationList 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
func NewContractInvocationListWithDefaults ¶ added in v0.0.9
func NewContractInvocationListWithDefaults() *ContractInvocationList
NewContractInvocationListWithDefaults instantiates a new ContractInvocationList 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
func (*ContractInvocationList) GetData ¶ added in v0.0.9
func (o *ContractInvocationList) GetData() []ContractInvocation
GetData returns the Data field value
func (*ContractInvocationList) GetDataOk ¶ added in v0.0.9
func (o *ContractInvocationList) GetDataOk() ([]ContractInvocation, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*ContractInvocationList) GetHasMore ¶ added in v0.0.9
func (o *ContractInvocationList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*ContractInvocationList) GetHasMoreOk ¶ added in v0.0.9
func (o *ContractInvocationList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*ContractInvocationList) GetNextPage ¶ added in v0.0.9
func (o *ContractInvocationList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*ContractInvocationList) GetNextPageOk ¶ added in v0.0.9
func (o *ContractInvocationList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*ContractInvocationList) GetTotalCount ¶ added in v0.0.9
func (o *ContractInvocationList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*ContractInvocationList) GetTotalCountOk ¶ added in v0.0.9
func (o *ContractInvocationList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (ContractInvocationList) MarshalJSON ¶ added in v0.0.9
func (o ContractInvocationList) MarshalJSON() ([]byte, error)
func (*ContractInvocationList) SetData ¶ added in v0.0.9
func (o *ContractInvocationList) SetData(v []ContractInvocation)
SetData sets field value
func (*ContractInvocationList) SetHasMore ¶ added in v0.0.9
func (o *ContractInvocationList) SetHasMore(v bool)
SetHasMore sets field value
func (*ContractInvocationList) SetNextPage ¶ added in v0.0.9
func (o *ContractInvocationList) SetNextPage(v string)
SetNextPage sets field value
func (*ContractInvocationList) SetTotalCount ¶ added in v0.0.9
func (o *ContractInvocationList) SetTotalCount(v int32)
SetTotalCount sets field value
func (ContractInvocationList) ToMap ¶ added in v0.0.9
func (o ContractInvocationList) ToMap() (map[string]interface{}, error)
func (*ContractInvocationList) UnmarshalJSON ¶ added in v0.0.9
func (o *ContractInvocationList) UnmarshalJSON(data []byte) (err error)
type ContractInvocationsAPI ¶ added in v0.0.9
type ContractInvocationsAPI interface { /* BroadcastContractInvocation Broadcast a contract invocation. Broadcast a contract invocation. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address the contract invocation belongs to. @param contractInvocationId The ID of the contract invocation to broadcast. @return ApiBroadcastContractInvocationRequest */ BroadcastContractInvocation(ctx context.Context, walletId string, addressId string, contractInvocationId string) ApiBroadcastContractInvocationRequest // BroadcastContractInvocationExecute executes the request // @return ContractInvocation BroadcastContractInvocationExecute(r ApiBroadcastContractInvocationRequest) (*ContractInvocation, *http.Response, error) /* CreateContractInvocation Create a new contract invocation for an address. Create a new contract invocation. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the source address belongs to. @param addressId The ID of the address to invoke the contract from. @return ApiCreateContractInvocationRequest */ CreateContractInvocation(ctx context.Context, walletId string, addressId string) ApiCreateContractInvocationRequest // CreateContractInvocationExecute executes the request // @return ContractInvocation CreateContractInvocationExecute(r ApiCreateContractInvocationRequest) (*ContractInvocation, *http.Response, error) /* GetContractInvocation Get a contract invocation by ID. Get a contract invocation by ID. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address the contract invocation belongs to. @param contractInvocationId The ID of the contract invocation to fetch. @return ApiGetContractInvocationRequest */ GetContractInvocation(ctx context.Context, walletId string, addressId string, contractInvocationId string) ApiGetContractInvocationRequest // GetContractInvocationExecute executes the request // @return ContractInvocation GetContractInvocationExecute(r ApiGetContractInvocationRequest) (*ContractInvocation, *http.Response, error) /* ListContractInvocations List contract invocations for an address. List contract invocations for an address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to list contract invocations for. @return ApiListContractInvocationsRequest */ ListContractInvocations(ctx context.Context, walletId string, addressId string) ApiListContractInvocationsRequest // ListContractInvocationsExecute executes the request // @return ContractInvocationList ListContractInvocationsExecute(r ApiListContractInvocationsRequest) (*ContractInvocationList, *http.Response, error) }
type ContractInvocationsAPIService ¶ added in v0.0.9
type ContractInvocationsAPIService service
ContractInvocationsAPIService ContractInvocationsAPI service
func (*ContractInvocationsAPIService) BroadcastContractInvocation ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) BroadcastContractInvocation(ctx context.Context, walletId string, addressId string, contractInvocationId string) ApiBroadcastContractInvocationRequest
BroadcastContractInvocation Broadcast a contract invocation.
Broadcast a contract invocation.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address the contract invocation belongs to. @param contractInvocationId The ID of the contract invocation to broadcast. @return ApiBroadcastContractInvocationRequest
func (*ContractInvocationsAPIService) BroadcastContractInvocationExecute ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) BroadcastContractInvocationExecute(r ApiBroadcastContractInvocationRequest) (*ContractInvocation, *http.Response, error)
Execute executes the request
@return ContractInvocation
func (*ContractInvocationsAPIService) CreateContractInvocation ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) CreateContractInvocation(ctx context.Context, walletId string, addressId string) ApiCreateContractInvocationRequest
CreateContractInvocation Create a new contract invocation for an address.
Create a new contract invocation.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the source address belongs to. @param addressId The ID of the address to invoke the contract from. @return ApiCreateContractInvocationRequest
func (*ContractInvocationsAPIService) CreateContractInvocationExecute ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) CreateContractInvocationExecute(r ApiCreateContractInvocationRequest) (*ContractInvocation, *http.Response, error)
Execute executes the request
@return ContractInvocation
func (*ContractInvocationsAPIService) GetContractInvocation ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) GetContractInvocation(ctx context.Context, walletId string, addressId string, contractInvocationId string) ApiGetContractInvocationRequest
GetContractInvocation Get a contract invocation by ID.
Get a contract invocation by ID.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address the contract invocation belongs to. @param contractInvocationId The ID of the contract invocation to fetch. @return ApiGetContractInvocationRequest
func (*ContractInvocationsAPIService) GetContractInvocationExecute ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) GetContractInvocationExecute(r ApiGetContractInvocationRequest) (*ContractInvocation, *http.Response, error)
Execute executes the request
@return ContractInvocation
func (*ContractInvocationsAPIService) ListContractInvocations ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) ListContractInvocations(ctx context.Context, walletId string, addressId string) ApiListContractInvocationsRequest
ListContractInvocations List contract invocations for an address.
List contract invocations for an address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to list contract invocations for. @return ApiListContractInvocationsRequest
func (*ContractInvocationsAPIService) ListContractInvocationsExecute ¶ added in v0.0.9
func (a *ContractInvocationsAPIService) ListContractInvocationsExecute(r ApiListContractInvocationsRequest) (*ContractInvocationList, *http.Response, error)
Execute executes the request
@return ContractInvocationList
type CreateAddressRequest ¶
type CreateAddressRequest struct { // The public key from which the address will be derived. PublicKey *string `json:"public_key,omitempty"` // An attestation signed by the private key that is associated with the wallet. The attestation will be a hex-encoded signature of a json payload with fields `wallet_id` and `public_key`, signed by the private key associated with the public_key set in the request. Attestation *string `json:"attestation,omitempty"` // The index of the address within the wallet. AddressIndex *int32 `json:"address_index,omitempty"` }
CreateAddressRequest struct for CreateAddressRequest
func NewCreateAddressRequest ¶
func NewCreateAddressRequest() *CreateAddressRequest
NewCreateAddressRequest instantiates a new CreateAddressRequest 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
func NewCreateAddressRequestWithDefaults ¶
func NewCreateAddressRequestWithDefaults() *CreateAddressRequest
NewCreateAddressRequestWithDefaults instantiates a new CreateAddressRequest 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
func (*CreateAddressRequest) GetAddressIndex ¶
func (o *CreateAddressRequest) GetAddressIndex() int32
GetAddressIndex returns the AddressIndex field value if set, zero value otherwise.
func (*CreateAddressRequest) GetAddressIndexOk ¶
func (o *CreateAddressRequest) GetAddressIndexOk() (*int32, bool)
GetAddressIndexOk returns a tuple with the AddressIndex field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateAddressRequest) GetAttestation ¶
func (o *CreateAddressRequest) GetAttestation() string
GetAttestation returns the Attestation field value if set, zero value otherwise.
func (*CreateAddressRequest) GetAttestationOk ¶
func (o *CreateAddressRequest) GetAttestationOk() (*string, bool)
GetAttestationOk returns a tuple with the Attestation field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateAddressRequest) GetPublicKey ¶
func (o *CreateAddressRequest) GetPublicKey() string
GetPublicKey returns the PublicKey field value if set, zero value otherwise.
func (*CreateAddressRequest) GetPublicKeyOk ¶
func (o *CreateAddressRequest) GetPublicKeyOk() (*string, bool)
GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateAddressRequest) HasAddressIndex ¶
func (o *CreateAddressRequest) HasAddressIndex() bool
HasAddressIndex returns a boolean if a field has been set.
func (*CreateAddressRequest) HasAttestation ¶
func (o *CreateAddressRequest) HasAttestation() bool
HasAttestation returns a boolean if a field has been set.
func (*CreateAddressRequest) HasPublicKey ¶
func (o *CreateAddressRequest) HasPublicKey() bool
HasPublicKey returns a boolean if a field has been set.
func (CreateAddressRequest) MarshalJSON ¶
func (o CreateAddressRequest) MarshalJSON() ([]byte, error)
func (*CreateAddressRequest) SetAddressIndex ¶
func (o *CreateAddressRequest) SetAddressIndex(v int32)
SetAddressIndex gets a reference to the given int32 and assigns it to the AddressIndex field.
func (*CreateAddressRequest) SetAttestation ¶
func (o *CreateAddressRequest) SetAttestation(v string)
SetAttestation gets a reference to the given string and assigns it to the Attestation field.
func (*CreateAddressRequest) SetPublicKey ¶
func (o *CreateAddressRequest) SetPublicKey(v string)
SetPublicKey gets a reference to the given string and assigns it to the PublicKey field.
func (CreateAddressRequest) ToMap ¶
func (o CreateAddressRequest) ToMap() (map[string]interface{}, error)
type CreateContractInvocationRequest ¶ added in v0.0.9
type CreateContractInvocationRequest struct { // The address of the contract to invoke. ContractAddress string `json:"contract_address"` // The method to invoke on the contract. Method string `json:"method"` // The JSON-encoded arguments to pass to the contract method. The keys should be the argument names and the values should be the argument values. Args string `json:"args"` // The JSON-encoded ABI of the contract. Abi *string `json:"abi,omitempty"` // The amount in atomic units of the native asset to send to the contract for a payable method Amount *string `json:"amount,omitempty"` }
CreateContractInvocationRequest struct for CreateContractInvocationRequest
func NewCreateContractInvocationRequest ¶ added in v0.0.9
func NewCreateContractInvocationRequest(contractAddress string, method string, args string) *CreateContractInvocationRequest
NewCreateContractInvocationRequest instantiates a new CreateContractInvocationRequest 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
func NewCreateContractInvocationRequestWithDefaults ¶ added in v0.0.9
func NewCreateContractInvocationRequestWithDefaults() *CreateContractInvocationRequest
NewCreateContractInvocationRequestWithDefaults instantiates a new CreateContractInvocationRequest 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
func (*CreateContractInvocationRequest) GetAbi ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetAbi() string
GetAbi returns the Abi field value if set, zero value otherwise.
func (*CreateContractInvocationRequest) GetAbiOk ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetAbiOk() (*string, bool)
GetAbiOk returns a tuple with the Abi field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateContractInvocationRequest) GetAmount ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetAmount() string
GetAmount returns the Amount field value if set, zero value otherwise.
func (*CreateContractInvocationRequest) GetAmountOk ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateContractInvocationRequest) GetArgs ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetArgs() string
GetArgs returns the Args field value
func (*CreateContractInvocationRequest) GetArgsOk ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetArgsOk() (*string, bool)
GetArgsOk returns a tuple with the Args field value and a boolean to check if the value has been set.
func (*CreateContractInvocationRequest) GetContractAddress ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetContractAddress() string
GetContractAddress returns the ContractAddress field value
func (*CreateContractInvocationRequest) GetContractAddressOk ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetContractAddressOk() (*string, bool)
GetContractAddressOk returns a tuple with the ContractAddress field value and a boolean to check if the value has been set.
func (*CreateContractInvocationRequest) GetMethod ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetMethod() string
GetMethod returns the Method field value
func (*CreateContractInvocationRequest) GetMethodOk ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) GetMethodOk() (*string, bool)
GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.
func (*CreateContractInvocationRequest) HasAbi ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) HasAbi() bool
HasAbi returns a boolean if a field has been set.
func (*CreateContractInvocationRequest) HasAmount ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) HasAmount() bool
HasAmount returns a boolean if a field has been set.
func (CreateContractInvocationRequest) MarshalJSON ¶ added in v0.0.9
func (o CreateContractInvocationRequest) MarshalJSON() ([]byte, error)
func (*CreateContractInvocationRequest) SetAbi ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) SetAbi(v string)
SetAbi gets a reference to the given string and assigns it to the Abi field.
func (*CreateContractInvocationRequest) SetAmount ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) SetAmount(v string)
SetAmount gets a reference to the given string and assigns it to the Amount field.
func (*CreateContractInvocationRequest) SetArgs ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) SetArgs(v string)
SetArgs sets field value
func (*CreateContractInvocationRequest) SetContractAddress ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) SetContractAddress(v string)
SetContractAddress sets field value
func (*CreateContractInvocationRequest) SetMethod ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) SetMethod(v string)
SetMethod sets field value
func (CreateContractInvocationRequest) ToMap ¶ added in v0.0.9
func (o CreateContractInvocationRequest) ToMap() (map[string]interface{}, error)
func (*CreateContractInvocationRequest) UnmarshalJSON ¶ added in v0.0.9
func (o *CreateContractInvocationRequest) UnmarshalJSON(data []byte) (err error)
type CreatePayloadSignatureRequest ¶ added in v0.0.9
type CreatePayloadSignatureRequest struct { // The unsigned payload. UnsignedPayload string `json:"unsigned_payload"` // The signature of the payload. Signature *string `json:"signature,omitempty"` }
CreatePayloadSignatureRequest struct for CreatePayloadSignatureRequest
func NewCreatePayloadSignatureRequest ¶ added in v0.0.9
func NewCreatePayloadSignatureRequest(unsignedPayload string) *CreatePayloadSignatureRequest
NewCreatePayloadSignatureRequest instantiates a new CreatePayloadSignatureRequest 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
func NewCreatePayloadSignatureRequestWithDefaults ¶ added in v0.0.9
func NewCreatePayloadSignatureRequestWithDefaults() *CreatePayloadSignatureRequest
NewCreatePayloadSignatureRequestWithDefaults instantiates a new CreatePayloadSignatureRequest 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
func (*CreatePayloadSignatureRequest) GetSignature ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) GetSignature() string
GetSignature returns the Signature field value if set, zero value otherwise.
func (*CreatePayloadSignatureRequest) GetSignatureOk ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) GetSignatureOk() (*string, bool)
GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreatePayloadSignatureRequest) GetUnsignedPayload ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) GetUnsignedPayload() string
GetUnsignedPayload returns the UnsignedPayload field value
func (*CreatePayloadSignatureRequest) GetUnsignedPayloadOk ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) GetUnsignedPayloadOk() (*string, bool)
GetUnsignedPayloadOk returns a tuple with the UnsignedPayload field value and a boolean to check if the value has been set.
func (*CreatePayloadSignatureRequest) HasSignature ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) HasSignature() bool
HasSignature returns a boolean if a field has been set.
func (CreatePayloadSignatureRequest) MarshalJSON ¶ added in v0.0.9
func (o CreatePayloadSignatureRequest) MarshalJSON() ([]byte, error)
func (*CreatePayloadSignatureRequest) SetSignature ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) SetSignature(v string)
SetSignature gets a reference to the given string and assigns it to the Signature field.
func (*CreatePayloadSignatureRequest) SetUnsignedPayload ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) SetUnsignedPayload(v string)
SetUnsignedPayload sets field value
func (CreatePayloadSignatureRequest) ToMap ¶ added in v0.0.9
func (o CreatePayloadSignatureRequest) ToMap() (map[string]interface{}, error)
func (*CreatePayloadSignatureRequest) UnmarshalJSON ¶ added in v0.0.9
func (o *CreatePayloadSignatureRequest) UnmarshalJSON(data []byte) (err error)
type CreateServerSignerRequest ¶
type CreateServerSignerRequest struct { // The ID of the server signer for the 1 of 1 server signer. ServerSignerId *string `json:"server_signer_id,omitempty"` // The enrollment data of the server signer. This will be the base64 encoded server-signer-id for the 1 of 1 server signer. EnrollmentData string `json:"enrollment_data"` // Whether the Server-Signer uses MPC. IsMpc bool `json:"is_mpc"` }
CreateServerSignerRequest struct for CreateServerSignerRequest
func NewCreateServerSignerRequest ¶
func NewCreateServerSignerRequest(enrollmentData string, isMpc bool) *CreateServerSignerRequest
NewCreateServerSignerRequest instantiates a new CreateServerSignerRequest 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
func NewCreateServerSignerRequestWithDefaults ¶
func NewCreateServerSignerRequestWithDefaults() *CreateServerSignerRequest
NewCreateServerSignerRequestWithDefaults instantiates a new CreateServerSignerRequest 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
func (*CreateServerSignerRequest) GetEnrollmentData ¶
func (o *CreateServerSignerRequest) GetEnrollmentData() string
GetEnrollmentData returns the EnrollmentData field value
func (*CreateServerSignerRequest) GetEnrollmentDataOk ¶
func (o *CreateServerSignerRequest) GetEnrollmentDataOk() (*string, bool)
GetEnrollmentDataOk returns a tuple with the EnrollmentData field value and a boolean to check if the value has been set.
func (*CreateServerSignerRequest) GetIsMpc ¶
func (o *CreateServerSignerRequest) GetIsMpc() bool
GetIsMpc returns the IsMpc field value
func (*CreateServerSignerRequest) GetIsMpcOk ¶
func (o *CreateServerSignerRequest) GetIsMpcOk() (*bool, bool)
GetIsMpcOk returns a tuple with the IsMpc field value and a boolean to check if the value has been set.
func (*CreateServerSignerRequest) GetServerSignerId ¶
func (o *CreateServerSignerRequest) GetServerSignerId() string
GetServerSignerId returns the ServerSignerId field value if set, zero value otherwise.
func (*CreateServerSignerRequest) GetServerSignerIdOk ¶
func (o *CreateServerSignerRequest) GetServerSignerIdOk() (*string, bool)
GetServerSignerIdOk returns a tuple with the ServerSignerId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateServerSignerRequest) HasServerSignerId ¶
func (o *CreateServerSignerRequest) HasServerSignerId() bool
HasServerSignerId returns a boolean if a field has been set.
func (CreateServerSignerRequest) MarshalJSON ¶
func (o CreateServerSignerRequest) MarshalJSON() ([]byte, error)
func (*CreateServerSignerRequest) SetEnrollmentData ¶
func (o *CreateServerSignerRequest) SetEnrollmentData(v string)
SetEnrollmentData sets field value
func (*CreateServerSignerRequest) SetIsMpc ¶
func (o *CreateServerSignerRequest) SetIsMpc(v bool)
SetIsMpc sets field value
func (*CreateServerSignerRequest) SetServerSignerId ¶
func (o *CreateServerSignerRequest) SetServerSignerId(v string)
SetServerSignerId gets a reference to the given string and assigns it to the ServerSignerId field.
func (CreateServerSignerRequest) ToMap ¶
func (o CreateServerSignerRequest) ToMap() (map[string]interface{}, error)
func (*CreateServerSignerRequest) UnmarshalJSON ¶
func (o *CreateServerSignerRequest) UnmarshalJSON(data []byte) (err error)
type CreateSmartContractRequest ¶ added in v0.0.9
type CreateSmartContractRequest struct { Type SmartContractType `json:"type"` Options SmartContractOptions `json:"options"` }
CreateSmartContractRequest struct for CreateSmartContractRequest
func NewCreateSmartContractRequest ¶ added in v0.0.9
func NewCreateSmartContractRequest(type_ SmartContractType, options SmartContractOptions) *CreateSmartContractRequest
NewCreateSmartContractRequest instantiates a new CreateSmartContractRequest 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
func NewCreateSmartContractRequestWithDefaults ¶ added in v0.0.9
func NewCreateSmartContractRequestWithDefaults() *CreateSmartContractRequest
NewCreateSmartContractRequestWithDefaults instantiates a new CreateSmartContractRequest 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
func (*CreateSmartContractRequest) GetOptions ¶ added in v0.0.9
func (o *CreateSmartContractRequest) GetOptions() SmartContractOptions
GetOptions returns the Options field value
func (*CreateSmartContractRequest) GetOptionsOk ¶ added in v0.0.9
func (o *CreateSmartContractRequest) GetOptionsOk() (*SmartContractOptions, bool)
GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.
func (*CreateSmartContractRequest) GetType ¶ added in v0.0.9
func (o *CreateSmartContractRequest) GetType() SmartContractType
GetType returns the Type field value
func (*CreateSmartContractRequest) GetTypeOk ¶ added in v0.0.9
func (o *CreateSmartContractRequest) GetTypeOk() (*SmartContractType, bool)
GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.
func (CreateSmartContractRequest) MarshalJSON ¶ added in v0.0.9
func (o CreateSmartContractRequest) MarshalJSON() ([]byte, error)
func (*CreateSmartContractRequest) SetOptions ¶ added in v0.0.9
func (o *CreateSmartContractRequest) SetOptions(v SmartContractOptions)
SetOptions sets field value
func (*CreateSmartContractRequest) SetType ¶ added in v0.0.9
func (o *CreateSmartContractRequest) SetType(v SmartContractType)
SetType sets field value
func (CreateSmartContractRequest) ToMap ¶ added in v0.0.9
func (o CreateSmartContractRequest) ToMap() (map[string]interface{}, error)
func (*CreateSmartContractRequest) UnmarshalJSON ¶ added in v0.0.9
func (o *CreateSmartContractRequest) UnmarshalJSON(data []byte) (err error)
type CreateStakingOperationRequest ¶
type CreateStakingOperationRequest struct { // The ID of the blockchain network. NetworkId string `json:"network_id"` // The ID of the asset being staked. AssetId string `json:"asset_id"` // The type of staking operation. Action string `json:"action"` Options map[string]string `json:"options"` }
CreateStakingOperationRequest struct for CreateStakingOperationRequest
func NewCreateStakingOperationRequest ¶
func NewCreateStakingOperationRequest(networkId string, assetId string, action string, options map[string]string) *CreateStakingOperationRequest
NewCreateStakingOperationRequest instantiates a new CreateStakingOperationRequest 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
func NewCreateStakingOperationRequestWithDefaults ¶
func NewCreateStakingOperationRequestWithDefaults() *CreateStakingOperationRequest
NewCreateStakingOperationRequestWithDefaults instantiates a new CreateStakingOperationRequest 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
func (*CreateStakingOperationRequest) GetAction ¶
func (o *CreateStakingOperationRequest) GetAction() string
GetAction returns the Action field value
func (*CreateStakingOperationRequest) GetActionOk ¶
func (o *CreateStakingOperationRequest) GetActionOk() (*string, bool)
GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.
func (*CreateStakingOperationRequest) GetAssetId ¶
func (o *CreateStakingOperationRequest) GetAssetId() string
GetAssetId returns the AssetId field value
func (*CreateStakingOperationRequest) GetAssetIdOk ¶
func (o *CreateStakingOperationRequest) GetAssetIdOk() (*string, bool)
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*CreateStakingOperationRequest) GetNetworkId ¶
func (o *CreateStakingOperationRequest) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*CreateStakingOperationRequest) GetNetworkIdOk ¶
func (o *CreateStakingOperationRequest) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*CreateStakingOperationRequest) GetOptions ¶
func (o *CreateStakingOperationRequest) GetOptions() map[string]string
GetOptions returns the Options field value
func (*CreateStakingOperationRequest) GetOptionsOk ¶
func (o *CreateStakingOperationRequest) GetOptionsOk() (*map[string]string, bool)
GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.
func (CreateStakingOperationRequest) MarshalJSON ¶
func (o CreateStakingOperationRequest) MarshalJSON() ([]byte, error)
func (*CreateStakingOperationRequest) SetAction ¶
func (o *CreateStakingOperationRequest) SetAction(v string)
SetAction sets field value
func (*CreateStakingOperationRequest) SetAssetId ¶
func (o *CreateStakingOperationRequest) SetAssetId(v string)
SetAssetId sets field value
func (*CreateStakingOperationRequest) SetNetworkId ¶
func (o *CreateStakingOperationRequest) SetNetworkId(v string)
SetNetworkId sets field value
func (*CreateStakingOperationRequest) SetOptions ¶
func (o *CreateStakingOperationRequest) SetOptions(v map[string]string)
SetOptions sets field value
func (CreateStakingOperationRequest) ToMap ¶
func (o CreateStakingOperationRequest) ToMap() (map[string]interface{}, error)
func (*CreateStakingOperationRequest) UnmarshalJSON ¶
func (o *CreateStakingOperationRequest) UnmarshalJSON(data []byte) (err error)
type CreateTradeRequest ¶
type CreateTradeRequest struct { // The amount to trade Amount string `json:"amount"` // The ID of the asset to trade FromAssetId string `json:"from_asset_id"` // The ID of the asset to receive from the trade ToAssetId string `json:"to_asset_id"` }
CreateTradeRequest struct for CreateTradeRequest
func NewCreateTradeRequest ¶
func NewCreateTradeRequest(amount string, fromAssetId string, toAssetId string) *CreateTradeRequest
NewCreateTradeRequest instantiates a new CreateTradeRequest 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
func NewCreateTradeRequestWithDefaults ¶
func NewCreateTradeRequestWithDefaults() *CreateTradeRequest
NewCreateTradeRequestWithDefaults instantiates a new CreateTradeRequest 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
func (*CreateTradeRequest) GetAmount ¶
func (o *CreateTradeRequest) GetAmount() string
GetAmount returns the Amount field value
func (*CreateTradeRequest) GetAmountOk ¶
func (o *CreateTradeRequest) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*CreateTradeRequest) GetFromAssetId ¶
func (o *CreateTradeRequest) GetFromAssetId() string
GetFromAssetId returns the FromAssetId field value
func (*CreateTradeRequest) GetFromAssetIdOk ¶
func (o *CreateTradeRequest) GetFromAssetIdOk() (*string, bool)
GetFromAssetIdOk returns a tuple with the FromAssetId field value and a boolean to check if the value has been set.
func (*CreateTradeRequest) GetToAssetId ¶
func (o *CreateTradeRequest) GetToAssetId() string
GetToAssetId returns the ToAssetId field value
func (*CreateTradeRequest) GetToAssetIdOk ¶
func (o *CreateTradeRequest) GetToAssetIdOk() (*string, bool)
GetToAssetIdOk returns a tuple with the ToAssetId field value and a boolean to check if the value has been set.
func (CreateTradeRequest) MarshalJSON ¶
func (o CreateTradeRequest) MarshalJSON() ([]byte, error)
func (*CreateTradeRequest) SetAmount ¶
func (o *CreateTradeRequest) SetAmount(v string)
SetAmount sets field value
func (*CreateTradeRequest) SetFromAssetId ¶
func (o *CreateTradeRequest) SetFromAssetId(v string)
SetFromAssetId sets field value
func (*CreateTradeRequest) SetToAssetId ¶
func (o *CreateTradeRequest) SetToAssetId(v string)
SetToAssetId sets field value
func (CreateTradeRequest) ToMap ¶
func (o CreateTradeRequest) ToMap() (map[string]interface{}, error)
func (*CreateTradeRequest) UnmarshalJSON ¶
func (o *CreateTradeRequest) UnmarshalJSON(data []byte) (err error)
type CreateTransferRequest ¶
type CreateTransferRequest struct { // The amount to transfer Amount string `json:"amount"` // The ID of the blockchain network NetworkId string `json:"network_id"` // The ID of the asset to transfer AssetId string `json:"asset_id"` // The destination address, which can be a 0x address, Basename, or ENS name Destination string `json:"destination"` // Whether the transfer uses sponsored gas Gasless *bool `json:"gasless,omitempty"` }
CreateTransferRequest struct for CreateTransferRequest
func NewCreateTransferRequest ¶
func NewCreateTransferRequest(amount string, networkId string, assetId string, destination string) *CreateTransferRequest
NewCreateTransferRequest instantiates a new CreateTransferRequest 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
func NewCreateTransferRequestWithDefaults ¶
func NewCreateTransferRequestWithDefaults() *CreateTransferRequest
NewCreateTransferRequestWithDefaults instantiates a new CreateTransferRequest 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
func (*CreateTransferRequest) GetAmount ¶
func (o *CreateTransferRequest) GetAmount() string
GetAmount returns the Amount field value
func (*CreateTransferRequest) GetAmountOk ¶
func (o *CreateTransferRequest) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*CreateTransferRequest) GetAssetId ¶
func (o *CreateTransferRequest) GetAssetId() string
GetAssetId returns the AssetId field value
func (*CreateTransferRequest) GetAssetIdOk ¶
func (o *CreateTransferRequest) GetAssetIdOk() (*string, bool)
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*CreateTransferRequest) GetDestination ¶
func (o *CreateTransferRequest) GetDestination() string
GetDestination returns the Destination field value
func (*CreateTransferRequest) GetDestinationOk ¶
func (o *CreateTransferRequest) GetDestinationOk() (*string, bool)
GetDestinationOk returns a tuple with the Destination field value and a boolean to check if the value has been set.
func (*CreateTransferRequest) GetGasless ¶
func (o *CreateTransferRequest) GetGasless() bool
GetGasless returns the Gasless field value if set, zero value otherwise.
func (*CreateTransferRequest) GetGaslessOk ¶
func (o *CreateTransferRequest) GetGaslessOk() (*bool, bool)
GetGaslessOk returns a tuple with the Gasless field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateTransferRequest) GetNetworkId ¶
func (o *CreateTransferRequest) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*CreateTransferRequest) GetNetworkIdOk ¶
func (o *CreateTransferRequest) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*CreateTransferRequest) HasGasless ¶
func (o *CreateTransferRequest) HasGasless() bool
HasGasless returns a boolean if a field has been set.
func (CreateTransferRequest) MarshalJSON ¶
func (o CreateTransferRequest) MarshalJSON() ([]byte, error)
func (*CreateTransferRequest) SetAmount ¶
func (o *CreateTransferRequest) SetAmount(v string)
SetAmount sets field value
func (*CreateTransferRequest) SetAssetId ¶
func (o *CreateTransferRequest) SetAssetId(v string)
SetAssetId sets field value
func (*CreateTransferRequest) SetDestination ¶
func (o *CreateTransferRequest) SetDestination(v string)
SetDestination sets field value
func (*CreateTransferRequest) SetGasless ¶
func (o *CreateTransferRequest) SetGasless(v bool)
SetGasless gets a reference to the given bool and assigns it to the Gasless field.
func (*CreateTransferRequest) SetNetworkId ¶
func (o *CreateTransferRequest) SetNetworkId(v string)
SetNetworkId sets field value
func (CreateTransferRequest) ToMap ¶
func (o CreateTransferRequest) ToMap() (map[string]interface{}, error)
func (*CreateTransferRequest) UnmarshalJSON ¶
func (o *CreateTransferRequest) UnmarshalJSON(data []byte) (err error)
type CreateWalletRequest ¶
type CreateWalletRequest struct {
Wallet CreateWalletRequestWallet `json:"wallet"`
}
CreateWalletRequest struct for CreateWalletRequest
func NewCreateWalletRequest ¶
func NewCreateWalletRequest(wallet CreateWalletRequestWallet) *CreateWalletRequest
NewCreateWalletRequest instantiates a new CreateWalletRequest 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
func NewCreateWalletRequestWithDefaults ¶
func NewCreateWalletRequestWithDefaults() *CreateWalletRequest
NewCreateWalletRequestWithDefaults instantiates a new CreateWalletRequest 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
func (*CreateWalletRequest) GetWallet ¶
func (o *CreateWalletRequest) GetWallet() CreateWalletRequestWallet
GetWallet returns the Wallet field value
func (*CreateWalletRequest) GetWalletOk ¶
func (o *CreateWalletRequest) GetWalletOk() (*CreateWalletRequestWallet, bool)
GetWalletOk returns a tuple with the Wallet field value and a boolean to check if the value has been set.
func (CreateWalletRequest) MarshalJSON ¶
func (o CreateWalletRequest) MarshalJSON() ([]byte, error)
func (*CreateWalletRequest) SetWallet ¶
func (o *CreateWalletRequest) SetWallet(v CreateWalletRequestWallet)
SetWallet sets field value
func (CreateWalletRequest) ToMap ¶
func (o CreateWalletRequest) ToMap() (map[string]interface{}, error)
func (*CreateWalletRequest) UnmarshalJSON ¶
func (o *CreateWalletRequest) UnmarshalJSON(data []byte) (err error)
type CreateWalletRequestWallet ¶
type CreateWalletRequestWallet struct { // The ID of the blockchain network NetworkId string `json:"network_id"` // Whether the wallet should use the project's server signer or if the addresses in the wallets will belong to a private key the developer manages. Defaults to false. UseServerSigner *bool `json:"use_server_signer,omitempty"` }
CreateWalletRequestWallet Parameters for configuring a wallet
func NewCreateWalletRequestWallet ¶
func NewCreateWalletRequestWallet(networkId string) *CreateWalletRequestWallet
NewCreateWalletRequestWallet instantiates a new CreateWalletRequestWallet 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
func NewCreateWalletRequestWalletWithDefaults ¶
func NewCreateWalletRequestWalletWithDefaults() *CreateWalletRequestWallet
NewCreateWalletRequestWalletWithDefaults instantiates a new CreateWalletRequestWallet 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
func (*CreateWalletRequestWallet) GetNetworkId ¶
func (o *CreateWalletRequestWallet) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*CreateWalletRequestWallet) GetNetworkIdOk ¶
func (o *CreateWalletRequestWallet) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*CreateWalletRequestWallet) GetUseServerSigner ¶
func (o *CreateWalletRequestWallet) GetUseServerSigner() bool
GetUseServerSigner returns the UseServerSigner field value if set, zero value otherwise.
func (*CreateWalletRequestWallet) GetUseServerSignerOk ¶
func (o *CreateWalletRequestWallet) GetUseServerSignerOk() (*bool, bool)
GetUseServerSignerOk returns a tuple with the UseServerSigner field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateWalletRequestWallet) HasUseServerSigner ¶
func (o *CreateWalletRequestWallet) HasUseServerSigner() bool
HasUseServerSigner returns a boolean if a field has been set.
func (CreateWalletRequestWallet) MarshalJSON ¶
func (o CreateWalletRequestWallet) MarshalJSON() ([]byte, error)
func (*CreateWalletRequestWallet) SetNetworkId ¶
func (o *CreateWalletRequestWallet) SetNetworkId(v string)
SetNetworkId sets field value
func (*CreateWalletRequestWallet) SetUseServerSigner ¶
func (o *CreateWalletRequestWallet) SetUseServerSigner(v bool)
SetUseServerSigner gets a reference to the given bool and assigns it to the UseServerSigner field.
func (CreateWalletRequestWallet) ToMap ¶
func (o CreateWalletRequestWallet) ToMap() (map[string]interface{}, error)
func (*CreateWalletRequestWallet) UnmarshalJSON ¶
func (o *CreateWalletRequestWallet) UnmarshalJSON(data []byte) (err error)
type CreateWebhookRequest ¶
type CreateWebhookRequest struct { // The ID of the blockchain network NetworkId string `json:"network_id"` EventType WebhookEventType `json:"event_type"` EventTypeFilter *WebhookEventTypeFilter `json:"event_type_filter,omitempty"` // Webhook will monitor all events that matches any one of the event filters. EventFilters []WebhookEventFilter `json:"event_filters,omitempty"` // The URL to which the notifications will be sent NotificationUri string `json:"notification_uri"` // The custom header to be used for x-webhook-signature header on callbacks, so developers can verify the requests are coming from Coinbase. SignatureHeader *string `json:"signature_header,omitempty"` }
CreateWebhookRequest struct for CreateWebhookRequest
func NewCreateWebhookRequest ¶
func NewCreateWebhookRequest(networkId string, eventType WebhookEventType, notificationUri string) *CreateWebhookRequest
NewCreateWebhookRequest instantiates a new CreateWebhookRequest 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
func NewCreateWebhookRequestWithDefaults ¶
func NewCreateWebhookRequestWithDefaults() *CreateWebhookRequest
NewCreateWebhookRequestWithDefaults instantiates a new CreateWebhookRequest 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
func (*CreateWebhookRequest) GetEventFilters ¶
func (o *CreateWebhookRequest) GetEventFilters() []WebhookEventFilter
GetEventFilters returns the EventFilters field value if set, zero value otherwise.
func (*CreateWebhookRequest) GetEventFiltersOk ¶
func (o *CreateWebhookRequest) GetEventFiltersOk() ([]WebhookEventFilter, bool)
GetEventFiltersOk returns a tuple with the EventFilters field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateWebhookRequest) GetEventType ¶
func (o *CreateWebhookRequest) GetEventType() WebhookEventType
GetEventType returns the EventType field value
func (*CreateWebhookRequest) GetEventTypeFilter ¶ added in v0.0.9
func (o *CreateWebhookRequest) GetEventTypeFilter() WebhookEventTypeFilter
GetEventTypeFilter returns the EventTypeFilter field value if set, zero value otherwise.
func (*CreateWebhookRequest) GetEventTypeFilterOk ¶ added in v0.0.9
func (o *CreateWebhookRequest) GetEventTypeFilterOk() (*WebhookEventTypeFilter, bool)
GetEventTypeFilterOk returns a tuple with the EventTypeFilter field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateWebhookRequest) GetEventTypeOk ¶
func (o *CreateWebhookRequest) GetEventTypeOk() (*WebhookEventType, bool)
GetEventTypeOk returns a tuple with the EventType field value and a boolean to check if the value has been set.
func (*CreateWebhookRequest) GetNetworkId ¶
func (o *CreateWebhookRequest) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*CreateWebhookRequest) GetNetworkIdOk ¶
func (o *CreateWebhookRequest) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*CreateWebhookRequest) GetNotificationUri ¶
func (o *CreateWebhookRequest) GetNotificationUri() string
GetNotificationUri returns the NotificationUri field value
func (*CreateWebhookRequest) GetNotificationUriOk ¶
func (o *CreateWebhookRequest) GetNotificationUriOk() (*string, bool)
GetNotificationUriOk returns a tuple with the NotificationUri field value and a boolean to check if the value has been set.
func (*CreateWebhookRequest) GetSignatureHeader ¶ added in v0.0.9
func (o *CreateWebhookRequest) GetSignatureHeader() string
GetSignatureHeader returns the SignatureHeader field value if set, zero value otherwise.
func (*CreateWebhookRequest) GetSignatureHeaderOk ¶ added in v0.0.9
func (o *CreateWebhookRequest) GetSignatureHeaderOk() (*string, bool)
GetSignatureHeaderOk returns a tuple with the SignatureHeader field value if set, nil otherwise and a boolean to check if the value has been set.
func (*CreateWebhookRequest) HasEventFilters ¶
func (o *CreateWebhookRequest) HasEventFilters() bool
HasEventFilters returns a boolean if a field has been set.
func (*CreateWebhookRequest) HasEventTypeFilter ¶ added in v0.0.9
func (o *CreateWebhookRequest) HasEventTypeFilter() bool
HasEventTypeFilter returns a boolean if a field has been set.
func (*CreateWebhookRequest) HasSignatureHeader ¶ added in v0.0.9
func (o *CreateWebhookRequest) HasSignatureHeader() bool
HasSignatureHeader returns a boolean if a field has been set.
func (CreateWebhookRequest) MarshalJSON ¶
func (o CreateWebhookRequest) MarshalJSON() ([]byte, error)
func (*CreateWebhookRequest) SetEventFilters ¶
func (o *CreateWebhookRequest) SetEventFilters(v []WebhookEventFilter)
SetEventFilters gets a reference to the given []WebhookEventFilter and assigns it to the EventFilters field.
func (*CreateWebhookRequest) SetEventType ¶
func (o *CreateWebhookRequest) SetEventType(v WebhookEventType)
SetEventType sets field value
func (*CreateWebhookRequest) SetEventTypeFilter ¶ added in v0.0.9
func (o *CreateWebhookRequest) SetEventTypeFilter(v WebhookEventTypeFilter)
SetEventTypeFilter gets a reference to the given WebhookEventTypeFilter and assigns it to the EventTypeFilter field.
func (*CreateWebhookRequest) SetNetworkId ¶
func (o *CreateWebhookRequest) SetNetworkId(v string)
SetNetworkId sets field value
func (*CreateWebhookRequest) SetNotificationUri ¶
func (o *CreateWebhookRequest) SetNotificationUri(v string)
SetNotificationUri sets field value
func (*CreateWebhookRequest) SetSignatureHeader ¶ added in v0.0.9
func (o *CreateWebhookRequest) SetSignatureHeader(v string)
SetSignatureHeader gets a reference to the given string and assigns it to the SignatureHeader field.
func (CreateWebhookRequest) ToMap ¶
func (o CreateWebhookRequest) ToMap() (map[string]interface{}, error)
func (*CreateWebhookRequest) UnmarshalJSON ¶
func (o *CreateWebhookRequest) UnmarshalJSON(data []byte) (err error)
type DeploySmartContractRequest ¶ added in v0.0.9
type DeploySmartContractRequest struct { // The hex-encoded signed payload of the contract deployment transaction. SignedPayload string `json:"signed_payload"` }
DeploySmartContractRequest struct for DeploySmartContractRequest
func NewDeploySmartContractRequest ¶ added in v0.0.9
func NewDeploySmartContractRequest(signedPayload string) *DeploySmartContractRequest
NewDeploySmartContractRequest instantiates a new DeploySmartContractRequest 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
func NewDeploySmartContractRequestWithDefaults ¶ added in v0.0.9
func NewDeploySmartContractRequestWithDefaults() *DeploySmartContractRequest
NewDeploySmartContractRequestWithDefaults instantiates a new DeploySmartContractRequest 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
func (*DeploySmartContractRequest) GetSignedPayload ¶ added in v0.0.9
func (o *DeploySmartContractRequest) GetSignedPayload() string
GetSignedPayload returns the SignedPayload field value
func (*DeploySmartContractRequest) GetSignedPayloadOk ¶ added in v0.0.9
func (o *DeploySmartContractRequest) GetSignedPayloadOk() (*string, bool)
GetSignedPayloadOk returns a tuple with the SignedPayload field value and a boolean to check if the value has been set.
func (DeploySmartContractRequest) MarshalJSON ¶ added in v0.0.9
func (o DeploySmartContractRequest) MarshalJSON() ([]byte, error)
func (*DeploySmartContractRequest) SetSignedPayload ¶ added in v0.0.9
func (o *DeploySmartContractRequest) SetSignedPayload(v string)
SetSignedPayload sets field value
func (DeploySmartContractRequest) ToMap ¶ added in v0.0.9
func (o DeploySmartContractRequest) ToMap() (map[string]interface{}, error)
func (*DeploySmartContractRequest) UnmarshalJSON ¶ added in v0.0.9
func (o *DeploySmartContractRequest) UnmarshalJSON(data []byte) (err error)
type ERC20TransferEvent ¶ added in v0.0.9
type ERC20TransferEvent struct { // Unique identifier for the webhook that triggered this event. WebhookId *string `json:"webhookId,omitempty"` // Type of event, in this case, an ERC-20 token transfer. EventType *string `json:"eventType,omitempty"` // Blockchain network where the event occurred. Network *string `json:"network,omitempty"` // Hash of the block containing the transaction. BlockHash *string `json:"blockHash,omitempty"` // Number of the block containing the transaction. BlockNumber *int32 `json:"blockNumber,omitempty"` // Timestamp when the block was mined. BlockTime *time.Time `json:"blockTime,omitempty"` // Hash of the transaction that triggered the event. TransactionHash *string `json:"transactionHash,omitempty"` // Position of the transaction within the block. TransactionIndex *int32 `json:"transactionIndex,omitempty"` // Position of the event log within the transaction. LogIndex *int32 `json:"logIndex,omitempty"` // Address of the ERC-20 token contract. ContractAddress *string `json:"contractAddress,omitempty"` // Address of the sender in the token transfer. From *string `json:"from,omitempty"` // Address of the recipient in the token transfer. To *string `json:"to,omitempty"` // Amount of tokens transferred, typically in the smallest unit (e.g., wei for Ethereum). Value *string `json:"value,omitempty"` }
ERC20TransferEvent Represents an event triggered by an ERC-20 token transfer on the blockchain. Contains information about the transaction, block, and involved addresses.
func NewERC20TransferEvent ¶ added in v0.0.9
func NewERC20TransferEvent() *ERC20TransferEvent
NewERC20TransferEvent instantiates a new ERC20TransferEvent 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
func NewERC20TransferEventWithDefaults ¶ added in v0.0.9
func NewERC20TransferEventWithDefaults() *ERC20TransferEvent
NewERC20TransferEventWithDefaults instantiates a new ERC20TransferEvent 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
func (*ERC20TransferEvent) GetBlockHash ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetBlockHash() string
GetBlockHash returns the BlockHash field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetBlockHashOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetBlockHashOk() (*string, bool)
GetBlockHashOk returns a tuple with the BlockHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetBlockNumber ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetBlockNumber() int32
GetBlockNumber returns the BlockNumber field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetBlockNumberOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetBlockNumberOk() (*int32, bool)
GetBlockNumberOk returns a tuple with the BlockNumber field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetBlockTime ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetBlockTime() time.Time
GetBlockTime returns the BlockTime field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetBlockTimeOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetBlockTimeOk() (*time.Time, bool)
GetBlockTimeOk returns a tuple with the BlockTime field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetContractAddress ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetContractAddress() string
GetContractAddress returns the ContractAddress field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetContractAddressOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetContractAddressOk() (*string, bool)
GetContractAddressOk returns a tuple with the ContractAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetEventType ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetEventType() string
GetEventType returns the EventType field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetEventTypeOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetEventTypeOk() (*string, bool)
GetEventTypeOk returns a tuple with the EventType field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetFrom ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetFrom() string
GetFrom returns the From field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetFromOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetFromOk() (*string, bool)
GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetLogIndex ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetLogIndex() int32
GetLogIndex returns the LogIndex field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetLogIndexOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetLogIndexOk() (*int32, bool)
GetLogIndexOk returns a tuple with the LogIndex field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetNetwork ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetNetwork() string
GetNetwork returns the Network field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetNetworkOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetNetworkOk() (*string, bool)
GetNetworkOk returns a tuple with the Network field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetTo ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetTo() string
GetTo returns the To field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetToOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetToOk() (*string, bool)
GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetTransactionHash ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetTransactionHash() string
GetTransactionHash returns the TransactionHash field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetTransactionHashOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetTransactionHashOk() (*string, bool)
GetTransactionHashOk returns a tuple with the TransactionHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetTransactionIndex ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetTransactionIndex() int32
GetTransactionIndex returns the TransactionIndex field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetTransactionIndexOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetTransactionIndexOk() (*int32, bool)
GetTransactionIndexOk returns a tuple with the TransactionIndex field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetValue ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetValue() string
GetValue returns the Value field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetValueOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetValueOk() (*string, bool)
GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) GetWebhookId ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetWebhookId() string
GetWebhookId returns the WebhookId field value if set, zero value otherwise.
func (*ERC20TransferEvent) GetWebhookIdOk ¶ added in v0.0.9
func (o *ERC20TransferEvent) GetWebhookIdOk() (*string, bool)
GetWebhookIdOk returns a tuple with the WebhookId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC20TransferEvent) HasBlockHash ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasBlockHash() bool
HasBlockHash returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasBlockNumber ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasBlockNumber() bool
HasBlockNumber returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasBlockTime ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasBlockTime() bool
HasBlockTime returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasContractAddress ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasContractAddress() bool
HasContractAddress returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasEventType ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasEventType() bool
HasEventType returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasFrom ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasFrom() bool
HasFrom returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasLogIndex ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasLogIndex() bool
HasLogIndex returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasNetwork ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasNetwork() bool
HasNetwork returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasTo ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasTo() bool
HasTo returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasTransactionHash ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasTransactionHash() bool
HasTransactionHash returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasTransactionIndex ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasTransactionIndex() bool
HasTransactionIndex returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasValue ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasValue() bool
HasValue returns a boolean if a field has been set.
func (*ERC20TransferEvent) HasWebhookId ¶ added in v0.0.9
func (o *ERC20TransferEvent) HasWebhookId() bool
HasWebhookId returns a boolean if a field has been set.
func (ERC20TransferEvent) MarshalJSON ¶ added in v0.0.9
func (o ERC20TransferEvent) MarshalJSON() ([]byte, error)
func (*ERC20TransferEvent) SetBlockHash ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetBlockHash(v string)
SetBlockHash gets a reference to the given string and assigns it to the BlockHash field.
func (*ERC20TransferEvent) SetBlockNumber ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetBlockNumber(v int32)
SetBlockNumber gets a reference to the given int32 and assigns it to the BlockNumber field.
func (*ERC20TransferEvent) SetBlockTime ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetBlockTime(v time.Time)
SetBlockTime gets a reference to the given time.Time and assigns it to the BlockTime field.
func (*ERC20TransferEvent) SetContractAddress ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetContractAddress(v string)
SetContractAddress gets a reference to the given string and assigns it to the ContractAddress field.
func (*ERC20TransferEvent) SetEventType ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetEventType(v string)
SetEventType gets a reference to the given string and assigns it to the EventType field.
func (*ERC20TransferEvent) SetFrom ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetFrom(v string)
SetFrom gets a reference to the given string and assigns it to the From field.
func (*ERC20TransferEvent) SetLogIndex ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetLogIndex(v int32)
SetLogIndex gets a reference to the given int32 and assigns it to the LogIndex field.
func (*ERC20TransferEvent) SetNetwork ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetNetwork(v string)
SetNetwork gets a reference to the given string and assigns it to the Network field.
func (*ERC20TransferEvent) SetTo ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetTo(v string)
SetTo gets a reference to the given string and assigns it to the To field.
func (*ERC20TransferEvent) SetTransactionHash ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetTransactionHash(v string)
SetTransactionHash gets a reference to the given string and assigns it to the TransactionHash field.
func (*ERC20TransferEvent) SetTransactionIndex ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetTransactionIndex(v int32)
SetTransactionIndex gets a reference to the given int32 and assigns it to the TransactionIndex field.
func (*ERC20TransferEvent) SetValue ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetValue(v string)
SetValue gets a reference to the given string and assigns it to the Value field.
func (*ERC20TransferEvent) SetWebhookId ¶ added in v0.0.9
func (o *ERC20TransferEvent) SetWebhookId(v string)
SetWebhookId gets a reference to the given string and assigns it to the WebhookId field.
func (ERC20TransferEvent) ToMap ¶ added in v0.0.9
func (o ERC20TransferEvent) ToMap() (map[string]interface{}, error)
type ERC721TransferEvent ¶ added in v0.0.9
type ERC721TransferEvent struct { // Unique identifier for the webhook that triggered this event. WebhookId *string `json:"webhookId,omitempty"` // Type of event, in this case, an ERC-721 token transfer. EventType *string `json:"eventType,omitempty"` // Blockchain network where the event occurred. Network *string `json:"network,omitempty"` // Hash of the block containing the transaction. BlockHash *string `json:"blockHash,omitempty"` // Number of the block containing the transaction. BlockNumber *int32 `json:"blockNumber,omitempty"` // Timestamp when the block was mined. BlockTime *time.Time `json:"blockTime,omitempty"` // Hash of the transaction that triggered the event. TransactionHash *string `json:"transactionHash,omitempty"` // Position of the transaction within the block. TransactionIndex *int32 `json:"transactionIndex,omitempty"` // Position of the event log within the transaction. LogIndex *int32 `json:"logIndex,omitempty"` // Address of the ERC-721 token contract. ContractAddress *string `json:"contractAddress,omitempty"` // Address of the sender in the token transfer. From *string `json:"from,omitempty"` // Address of the recipient in the token transfer. To *string `json:"to,omitempty"` // Unique identifier of the NFT being transferred. TokenId *string `json:"tokenId,omitempty"` }
ERC721TransferEvent Represents an event triggered by an ERC-721 token transfer on the blockchain. Contains information about the transaction, block, and involved addresses.
func NewERC721TransferEvent ¶ added in v0.0.9
func NewERC721TransferEvent() *ERC721TransferEvent
NewERC721TransferEvent instantiates a new ERC721TransferEvent 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
func NewERC721TransferEventWithDefaults ¶ added in v0.0.9
func NewERC721TransferEventWithDefaults() *ERC721TransferEvent
NewERC721TransferEventWithDefaults instantiates a new ERC721TransferEvent 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
func (*ERC721TransferEvent) GetBlockHash ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetBlockHash() string
GetBlockHash returns the BlockHash field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetBlockHashOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetBlockHashOk() (*string, bool)
GetBlockHashOk returns a tuple with the BlockHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetBlockNumber ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetBlockNumber() int32
GetBlockNumber returns the BlockNumber field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetBlockNumberOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetBlockNumberOk() (*int32, bool)
GetBlockNumberOk returns a tuple with the BlockNumber field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetBlockTime ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetBlockTime() time.Time
GetBlockTime returns the BlockTime field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetBlockTimeOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetBlockTimeOk() (*time.Time, bool)
GetBlockTimeOk returns a tuple with the BlockTime field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetContractAddress ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetContractAddress() string
GetContractAddress returns the ContractAddress field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetContractAddressOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetContractAddressOk() (*string, bool)
GetContractAddressOk returns a tuple with the ContractAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetEventType ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetEventType() string
GetEventType returns the EventType field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetEventTypeOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetEventTypeOk() (*string, bool)
GetEventTypeOk returns a tuple with the EventType field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetFrom ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetFrom() string
GetFrom returns the From field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetFromOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetFromOk() (*string, bool)
GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetLogIndex ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetLogIndex() int32
GetLogIndex returns the LogIndex field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetLogIndexOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetLogIndexOk() (*int32, bool)
GetLogIndexOk returns a tuple with the LogIndex field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetNetwork ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetNetwork() string
GetNetwork returns the Network field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetNetworkOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetNetworkOk() (*string, bool)
GetNetworkOk returns a tuple with the Network field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetTo ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetTo() string
GetTo returns the To field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetToOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetToOk() (*string, bool)
GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetTokenId ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetTokenId() string
GetTokenId returns the TokenId field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetTokenIdOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetTokenIdOk() (*string, bool)
GetTokenIdOk returns a tuple with the TokenId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetTransactionHash ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetTransactionHash() string
GetTransactionHash returns the TransactionHash field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetTransactionHashOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetTransactionHashOk() (*string, bool)
GetTransactionHashOk returns a tuple with the TransactionHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetTransactionIndex ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetTransactionIndex() int32
GetTransactionIndex returns the TransactionIndex field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetTransactionIndexOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetTransactionIndexOk() (*int32, bool)
GetTransactionIndexOk returns a tuple with the TransactionIndex field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) GetWebhookId ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetWebhookId() string
GetWebhookId returns the WebhookId field value if set, zero value otherwise.
func (*ERC721TransferEvent) GetWebhookIdOk ¶ added in v0.0.9
func (o *ERC721TransferEvent) GetWebhookIdOk() (*string, bool)
GetWebhookIdOk returns a tuple with the WebhookId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ERC721TransferEvent) HasBlockHash ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasBlockHash() bool
HasBlockHash returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasBlockNumber ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasBlockNumber() bool
HasBlockNumber returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasBlockTime ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasBlockTime() bool
HasBlockTime returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasContractAddress ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasContractAddress() bool
HasContractAddress returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasEventType ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasEventType() bool
HasEventType returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasFrom ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasFrom() bool
HasFrom returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasLogIndex ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasLogIndex() bool
HasLogIndex returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasNetwork ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasNetwork() bool
HasNetwork returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasTo ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasTo() bool
HasTo returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasTokenId ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasTokenId() bool
HasTokenId returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasTransactionHash ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasTransactionHash() bool
HasTransactionHash returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasTransactionIndex ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasTransactionIndex() bool
HasTransactionIndex returns a boolean if a field has been set.
func (*ERC721TransferEvent) HasWebhookId ¶ added in v0.0.9
func (o *ERC721TransferEvent) HasWebhookId() bool
HasWebhookId returns a boolean if a field has been set.
func (ERC721TransferEvent) MarshalJSON ¶ added in v0.0.9
func (o ERC721TransferEvent) MarshalJSON() ([]byte, error)
func (*ERC721TransferEvent) SetBlockHash ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetBlockHash(v string)
SetBlockHash gets a reference to the given string and assigns it to the BlockHash field.
func (*ERC721TransferEvent) SetBlockNumber ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetBlockNumber(v int32)
SetBlockNumber gets a reference to the given int32 and assigns it to the BlockNumber field.
func (*ERC721TransferEvent) SetBlockTime ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetBlockTime(v time.Time)
SetBlockTime gets a reference to the given time.Time and assigns it to the BlockTime field.
func (*ERC721TransferEvent) SetContractAddress ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetContractAddress(v string)
SetContractAddress gets a reference to the given string and assigns it to the ContractAddress field.
func (*ERC721TransferEvent) SetEventType ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetEventType(v string)
SetEventType gets a reference to the given string and assigns it to the EventType field.
func (*ERC721TransferEvent) SetFrom ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetFrom(v string)
SetFrom gets a reference to the given string and assigns it to the From field.
func (*ERC721TransferEvent) SetLogIndex ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetLogIndex(v int32)
SetLogIndex gets a reference to the given int32 and assigns it to the LogIndex field.
func (*ERC721TransferEvent) SetNetwork ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetNetwork(v string)
SetNetwork gets a reference to the given string and assigns it to the Network field.
func (*ERC721TransferEvent) SetTo ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetTo(v string)
SetTo gets a reference to the given string and assigns it to the To field.
func (*ERC721TransferEvent) SetTokenId ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetTokenId(v string)
SetTokenId gets a reference to the given string and assigns it to the TokenId field.
func (*ERC721TransferEvent) SetTransactionHash ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetTransactionHash(v string)
SetTransactionHash gets a reference to the given string and assigns it to the TransactionHash field.
func (*ERC721TransferEvent) SetTransactionIndex ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetTransactionIndex(v int32)
SetTransactionIndex gets a reference to the given int32 and assigns it to the TransactionIndex field.
func (*ERC721TransferEvent) SetWebhookId ¶ added in v0.0.9
func (o *ERC721TransferEvent) SetWebhookId(v string)
SetWebhookId gets a reference to the given string and assigns it to the WebhookId field.
func (ERC721TransferEvent) ToMap ¶ added in v0.0.9
func (o ERC721TransferEvent) ToMap() (map[string]interface{}, error)
type Error ¶
type Error struct { // A short string representing the reported error. Can be use to handle errors programmatically. Code string `json:"code"` // A human-readable message providing more details about the error. Message string `json:"message"` // A unique identifier for the request that generated the error. This can be used to help debug issues with the API. CorrelationId *string `json:"correlation_id,omitempty"` }
Error An error response from the Coinbase Developer Platform API
func NewError ¶
NewError instantiates a new Error 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
func NewErrorWithDefaults ¶
func NewErrorWithDefaults() *Error
NewErrorWithDefaults instantiates a new Error 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
func (*Error) GetCodeOk ¶
GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.
func (*Error) GetCorrelationId ¶ added in v0.0.6
GetCorrelationId returns the CorrelationId field value if set, zero value otherwise.
func (*Error) GetCorrelationIdOk ¶ added in v0.0.6
GetCorrelationIdOk returns a tuple with the CorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Error) GetMessage ¶
GetMessage returns the Message field value
func (*Error) GetMessageOk ¶
GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.
func (*Error) HasCorrelationId ¶ added in v0.0.6
HasCorrelationId returns a boolean if a field has been set.
func (Error) MarshalJSON ¶
func (*Error) SetCorrelationId ¶ added in v0.0.6
SetCorrelationId gets a reference to the given string and assigns it to the CorrelationId field.
func (*Error) UnmarshalJSON ¶
type EthereumTransaction ¶ added in v0.0.9
type EthereumTransaction struct { // The onchain address of the sender. From string `json:"from"` // The amount of gas spent in the transaction. Gas *int32 `json:"gas,omitempty"` // The price per gas spent in the transaction in atomic units of the native asset. GasPrice *int32 `json:"gas_price,omitempty"` // The hash of the transaction as a hexadecimal string, prefixed with 0x. Hash *string `json:"hash,omitempty"` // The input data of the transaction. Input *string `json:"input,omitempty"` // The nonce of the transaction in the source address. Nonce *int32 `json:"nonce,omitempty"` // The onchain address of the receiver. To string `json:"to"` // The index of the transaction in the block. Index *int32 `json:"index,omitempty"` // The value of the transaction in atomic units of the native asset. Value *string `json:"value,omitempty"` // The EIP-2718 transaction type. See https://eips.ethereum.org/EIPS/eip-2718 for more details. Type *int32 `json:"type,omitempty"` // The max fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details. MaxFeePerGas *int32 `json:"max_fee_per_gas,omitempty"` // The max priority fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details. MaxPriorityFeePerGas *int32 `json:"max_priority_fee_per_gas,omitempty"` // The confirmed priority fee per gas as defined in EIP-1559. https://eips.ethereum.org/EIPS/eip-1559 for more details. PriorityFeePerGas *int32 `json:"priority_fee_per_gas,omitempty"` TransactionAccessList *EthereumTransactionAccessList `json:"transaction_access_list,omitempty"` FlattenedTraces []EthereumTransactionFlattenedTrace `json:"flattened_traces,omitempty"` // The timestamp of the block in which the event was emitted BlockTimestamp *time.Time `json:"block_timestamp,omitempty"` // This is for handling optimism rollup specific EIP-2718 transaction type field. Mint *string `json:"mint,omitempty"` }
EthereumTransaction struct for EthereumTransaction
func NewEthereumTransaction ¶ added in v0.0.9
func NewEthereumTransaction(from string, to string) *EthereumTransaction
NewEthereumTransaction instantiates a new EthereumTransaction 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
func NewEthereumTransactionWithDefaults ¶ added in v0.0.9
func NewEthereumTransactionWithDefaults() *EthereumTransaction
NewEthereumTransactionWithDefaults instantiates a new EthereumTransaction 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
func (*EthereumTransaction) GetBlockTimestamp ¶ added in v0.0.9
func (o *EthereumTransaction) GetBlockTimestamp() time.Time
GetBlockTimestamp returns the BlockTimestamp field value if set, zero value otherwise.
func (*EthereumTransaction) GetBlockTimestampOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetBlockTimestampOk() (*time.Time, bool)
GetBlockTimestampOk returns a tuple with the BlockTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetFlattenedTraces ¶ added in v0.0.9
func (o *EthereumTransaction) GetFlattenedTraces() []EthereumTransactionFlattenedTrace
GetFlattenedTraces returns the FlattenedTraces field value if set, zero value otherwise.
func (*EthereumTransaction) GetFlattenedTracesOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetFlattenedTracesOk() ([]EthereumTransactionFlattenedTrace, bool)
GetFlattenedTracesOk returns a tuple with the FlattenedTraces field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetFrom ¶ added in v0.0.9
func (o *EthereumTransaction) GetFrom() string
GetFrom returns the From field value
func (*EthereumTransaction) GetFromOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetFromOk() (*string, bool)
GetFromOk returns a tuple with the From field value and a boolean to check if the value has been set.
func (*EthereumTransaction) GetGas ¶ added in v0.0.9
func (o *EthereumTransaction) GetGas() int32
GetGas returns the Gas field value if set, zero value otherwise.
func (*EthereumTransaction) GetGasOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetGasOk() (*int32, bool)
GetGasOk returns a tuple with the Gas field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetGasPrice ¶ added in v0.0.9
func (o *EthereumTransaction) GetGasPrice() int32
GetGasPrice returns the GasPrice field value if set, zero value otherwise.
func (*EthereumTransaction) GetGasPriceOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetGasPriceOk() (*int32, bool)
GetGasPriceOk returns a tuple with the GasPrice field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetHash ¶ added in v0.0.9
func (o *EthereumTransaction) GetHash() string
GetHash returns the Hash field value if set, zero value otherwise.
func (*EthereumTransaction) GetHashOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetHashOk() (*string, bool)
GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetIndex ¶ added in v0.0.9
func (o *EthereumTransaction) GetIndex() int32
GetIndex returns the Index field value if set, zero value otherwise.
func (*EthereumTransaction) GetIndexOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetIndexOk() (*int32, bool)
GetIndexOk returns a tuple with the Index field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetInput ¶ added in v0.0.9
func (o *EthereumTransaction) GetInput() string
GetInput returns the Input field value if set, zero value otherwise.
func (*EthereumTransaction) GetInputOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetInputOk() (*string, bool)
GetInputOk returns a tuple with the Input field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetMaxFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) GetMaxFeePerGas() int32
GetMaxFeePerGas returns the MaxFeePerGas field value if set, zero value otherwise.
func (*EthereumTransaction) GetMaxFeePerGasOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetMaxFeePerGasOk() (*int32, bool)
GetMaxFeePerGasOk returns a tuple with the MaxFeePerGas field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetMaxPriorityFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) GetMaxPriorityFeePerGas() int32
GetMaxPriorityFeePerGas returns the MaxPriorityFeePerGas field value if set, zero value otherwise.
func (*EthereumTransaction) GetMaxPriorityFeePerGasOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetMaxPriorityFeePerGasOk() (*int32, bool)
GetMaxPriorityFeePerGasOk returns a tuple with the MaxPriorityFeePerGas field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetMint ¶ added in v0.0.9
func (o *EthereumTransaction) GetMint() string
GetMint returns the Mint field value if set, zero value otherwise.
func (*EthereumTransaction) GetMintOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetMintOk() (*string, bool)
GetMintOk returns a tuple with the Mint field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetNonce ¶ added in v0.0.9
func (o *EthereumTransaction) GetNonce() int32
GetNonce returns the Nonce field value if set, zero value otherwise.
func (*EthereumTransaction) GetNonceOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetNonceOk() (*int32, bool)
GetNonceOk returns a tuple with the Nonce field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetPriorityFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) GetPriorityFeePerGas() int32
GetPriorityFeePerGas returns the PriorityFeePerGas field value if set, zero value otherwise.
func (*EthereumTransaction) GetPriorityFeePerGasOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetPriorityFeePerGasOk() (*int32, bool)
GetPriorityFeePerGasOk returns a tuple with the PriorityFeePerGas field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetTo ¶ added in v0.0.9
func (o *EthereumTransaction) GetTo() string
GetTo returns the To field value
func (*EthereumTransaction) GetToOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetToOk() (*string, bool)
GetToOk returns a tuple with the To field value and a boolean to check if the value has been set.
func (*EthereumTransaction) GetTransactionAccessList ¶ added in v0.0.9
func (o *EthereumTransaction) GetTransactionAccessList() EthereumTransactionAccessList
GetTransactionAccessList returns the TransactionAccessList field value if set, zero value otherwise.
func (*EthereumTransaction) GetTransactionAccessListOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetTransactionAccessListOk() (*EthereumTransactionAccessList, bool)
GetTransactionAccessListOk returns a tuple with the TransactionAccessList field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetType ¶ added in v0.0.9
func (o *EthereumTransaction) GetType() int32
GetType returns the Type field value if set, zero value otherwise.
func (*EthereumTransaction) GetTypeOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetTypeOk() (*int32, bool)
GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) GetValue ¶ added in v0.0.9
func (o *EthereumTransaction) GetValue() string
GetValue returns the Value field value if set, zero value otherwise.
func (*EthereumTransaction) GetValueOk ¶ added in v0.0.9
func (o *EthereumTransaction) GetValueOk() (*string, bool)
GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransaction) HasBlockTimestamp ¶ added in v0.0.9
func (o *EthereumTransaction) HasBlockTimestamp() bool
HasBlockTimestamp returns a boolean if a field has been set.
func (*EthereumTransaction) HasFlattenedTraces ¶ added in v0.0.9
func (o *EthereumTransaction) HasFlattenedTraces() bool
HasFlattenedTraces returns a boolean if a field has been set.
func (*EthereumTransaction) HasGas ¶ added in v0.0.9
func (o *EthereumTransaction) HasGas() bool
HasGas returns a boolean if a field has been set.
func (*EthereumTransaction) HasGasPrice ¶ added in v0.0.9
func (o *EthereumTransaction) HasGasPrice() bool
HasGasPrice returns a boolean if a field has been set.
func (*EthereumTransaction) HasHash ¶ added in v0.0.9
func (o *EthereumTransaction) HasHash() bool
HasHash returns a boolean if a field has been set.
func (*EthereumTransaction) HasIndex ¶ added in v0.0.9
func (o *EthereumTransaction) HasIndex() bool
HasIndex returns a boolean if a field has been set.
func (*EthereumTransaction) HasInput ¶ added in v0.0.9
func (o *EthereumTransaction) HasInput() bool
HasInput returns a boolean if a field has been set.
func (*EthereumTransaction) HasMaxFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) HasMaxFeePerGas() bool
HasMaxFeePerGas returns a boolean if a field has been set.
func (*EthereumTransaction) HasMaxPriorityFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) HasMaxPriorityFeePerGas() bool
HasMaxPriorityFeePerGas returns a boolean if a field has been set.
func (*EthereumTransaction) HasMint ¶ added in v0.0.9
func (o *EthereumTransaction) HasMint() bool
HasMint returns a boolean if a field has been set.
func (*EthereumTransaction) HasNonce ¶ added in v0.0.9
func (o *EthereumTransaction) HasNonce() bool
HasNonce returns a boolean if a field has been set.
func (*EthereumTransaction) HasPriorityFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) HasPriorityFeePerGas() bool
HasPriorityFeePerGas returns a boolean if a field has been set.
func (*EthereumTransaction) HasTransactionAccessList ¶ added in v0.0.9
func (o *EthereumTransaction) HasTransactionAccessList() bool
HasTransactionAccessList returns a boolean if a field has been set.
func (*EthereumTransaction) HasType ¶ added in v0.0.9
func (o *EthereumTransaction) HasType() bool
HasType returns a boolean if a field has been set.
func (*EthereumTransaction) HasValue ¶ added in v0.0.9
func (o *EthereumTransaction) HasValue() bool
HasValue returns a boolean if a field has been set.
func (EthereumTransaction) MarshalJSON ¶ added in v0.0.9
func (o EthereumTransaction) MarshalJSON() ([]byte, error)
func (*EthereumTransaction) SetBlockTimestamp ¶ added in v0.0.9
func (o *EthereumTransaction) SetBlockTimestamp(v time.Time)
SetBlockTimestamp gets a reference to the given time.Time and assigns it to the BlockTimestamp field.
func (*EthereumTransaction) SetFlattenedTraces ¶ added in v0.0.9
func (o *EthereumTransaction) SetFlattenedTraces(v []EthereumTransactionFlattenedTrace)
SetFlattenedTraces gets a reference to the given []EthereumTransactionFlattenedTrace and assigns it to the FlattenedTraces field.
func (*EthereumTransaction) SetFrom ¶ added in v0.0.9
func (o *EthereumTransaction) SetFrom(v string)
SetFrom sets field value
func (*EthereumTransaction) SetGas ¶ added in v0.0.9
func (o *EthereumTransaction) SetGas(v int32)
SetGas gets a reference to the given int32 and assigns it to the Gas field.
func (*EthereumTransaction) SetGasPrice ¶ added in v0.0.9
func (o *EthereumTransaction) SetGasPrice(v int32)
SetGasPrice gets a reference to the given int32 and assigns it to the GasPrice field.
func (*EthereumTransaction) SetHash ¶ added in v0.0.9
func (o *EthereumTransaction) SetHash(v string)
SetHash gets a reference to the given string and assigns it to the Hash field.
func (*EthereumTransaction) SetIndex ¶ added in v0.0.9
func (o *EthereumTransaction) SetIndex(v int32)
SetIndex gets a reference to the given int32 and assigns it to the Index field.
func (*EthereumTransaction) SetInput ¶ added in v0.0.9
func (o *EthereumTransaction) SetInput(v string)
SetInput gets a reference to the given string and assigns it to the Input field.
func (*EthereumTransaction) SetMaxFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) SetMaxFeePerGas(v int32)
SetMaxFeePerGas gets a reference to the given int32 and assigns it to the MaxFeePerGas field.
func (*EthereumTransaction) SetMaxPriorityFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) SetMaxPriorityFeePerGas(v int32)
SetMaxPriorityFeePerGas gets a reference to the given int32 and assigns it to the MaxPriorityFeePerGas field.
func (*EthereumTransaction) SetMint ¶ added in v0.0.9
func (o *EthereumTransaction) SetMint(v string)
SetMint gets a reference to the given string and assigns it to the Mint field.
func (*EthereumTransaction) SetNonce ¶ added in v0.0.9
func (o *EthereumTransaction) SetNonce(v int32)
SetNonce gets a reference to the given int32 and assigns it to the Nonce field.
func (*EthereumTransaction) SetPriorityFeePerGas ¶ added in v0.0.9
func (o *EthereumTransaction) SetPriorityFeePerGas(v int32)
SetPriorityFeePerGas gets a reference to the given int32 and assigns it to the PriorityFeePerGas field.
func (*EthereumTransaction) SetTo ¶ added in v0.0.9
func (o *EthereumTransaction) SetTo(v string)
SetTo sets field value
func (*EthereumTransaction) SetTransactionAccessList ¶ added in v0.0.9
func (o *EthereumTransaction) SetTransactionAccessList(v EthereumTransactionAccessList)
SetTransactionAccessList gets a reference to the given EthereumTransactionAccessList and assigns it to the TransactionAccessList field.
func (*EthereumTransaction) SetType ¶ added in v0.0.9
func (o *EthereumTransaction) SetType(v int32)
SetType gets a reference to the given int32 and assigns it to the Type field.
func (*EthereumTransaction) SetValue ¶ added in v0.0.9
func (o *EthereumTransaction) SetValue(v string)
SetValue gets a reference to the given string and assigns it to the Value field.
func (EthereumTransaction) ToMap ¶ added in v0.0.9
func (o EthereumTransaction) ToMap() (map[string]interface{}, error)
func (*EthereumTransaction) UnmarshalJSON ¶ added in v0.0.9
func (o *EthereumTransaction) UnmarshalJSON(data []byte) (err error)
type EthereumTransactionAccess ¶ added in v0.0.9
type EthereumTransactionAccess struct { Address *string `json:"address,omitempty"` StorageKeys []string `json:"storage_keys,omitempty"` }
EthereumTransactionAccess struct for EthereumTransactionAccess
func NewEthereumTransactionAccess ¶ added in v0.0.9
func NewEthereumTransactionAccess() *EthereumTransactionAccess
NewEthereumTransactionAccess instantiates a new EthereumTransactionAccess 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
func NewEthereumTransactionAccessWithDefaults ¶ added in v0.0.9
func NewEthereumTransactionAccessWithDefaults() *EthereumTransactionAccess
NewEthereumTransactionAccessWithDefaults instantiates a new EthereumTransactionAccess 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
func (*EthereumTransactionAccess) GetAddress ¶ added in v0.0.9
func (o *EthereumTransactionAccess) GetAddress() string
GetAddress returns the Address field value if set, zero value otherwise.
func (*EthereumTransactionAccess) GetAddressOk ¶ added in v0.0.9
func (o *EthereumTransactionAccess) GetAddressOk() (*string, bool)
GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionAccess) GetStorageKeys ¶ added in v0.0.9
func (o *EthereumTransactionAccess) GetStorageKeys() []string
GetStorageKeys returns the StorageKeys field value if set, zero value otherwise.
func (*EthereumTransactionAccess) GetStorageKeysOk ¶ added in v0.0.9
func (o *EthereumTransactionAccess) GetStorageKeysOk() ([]string, bool)
GetStorageKeysOk returns a tuple with the StorageKeys field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionAccess) HasAddress ¶ added in v0.0.9
func (o *EthereumTransactionAccess) HasAddress() bool
HasAddress returns a boolean if a field has been set.
func (*EthereumTransactionAccess) HasStorageKeys ¶ added in v0.0.9
func (o *EthereumTransactionAccess) HasStorageKeys() bool
HasStorageKeys returns a boolean if a field has been set.
func (EthereumTransactionAccess) MarshalJSON ¶ added in v0.0.9
func (o EthereumTransactionAccess) MarshalJSON() ([]byte, error)
func (*EthereumTransactionAccess) SetAddress ¶ added in v0.0.9
func (o *EthereumTransactionAccess) SetAddress(v string)
SetAddress gets a reference to the given string and assigns it to the Address field.
func (*EthereumTransactionAccess) SetStorageKeys ¶ added in v0.0.9
func (o *EthereumTransactionAccess) SetStorageKeys(v []string)
SetStorageKeys gets a reference to the given []string and assigns it to the StorageKeys field.
func (EthereumTransactionAccess) ToMap ¶ added in v0.0.9
func (o EthereumTransactionAccess) ToMap() (map[string]interface{}, error)
type EthereumTransactionAccessList ¶ added in v0.0.9
type EthereumTransactionAccessList struct {
AccessList []EthereumTransactionAccess `json:"access_list,omitempty"`
}
EthereumTransactionAccessList struct for EthereumTransactionAccessList
func NewEthereumTransactionAccessList ¶ added in v0.0.9
func NewEthereumTransactionAccessList() *EthereumTransactionAccessList
NewEthereumTransactionAccessList instantiates a new EthereumTransactionAccessList 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
func NewEthereumTransactionAccessListWithDefaults ¶ added in v0.0.9
func NewEthereumTransactionAccessListWithDefaults() *EthereumTransactionAccessList
NewEthereumTransactionAccessListWithDefaults instantiates a new EthereumTransactionAccessList 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
func (*EthereumTransactionAccessList) GetAccessList ¶ added in v0.0.9
func (o *EthereumTransactionAccessList) GetAccessList() []EthereumTransactionAccess
GetAccessList returns the AccessList field value if set, zero value otherwise.
func (*EthereumTransactionAccessList) GetAccessListOk ¶ added in v0.0.9
func (o *EthereumTransactionAccessList) GetAccessListOk() ([]EthereumTransactionAccess, bool)
GetAccessListOk returns a tuple with the AccessList field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionAccessList) HasAccessList ¶ added in v0.0.9
func (o *EthereumTransactionAccessList) HasAccessList() bool
HasAccessList returns a boolean if a field has been set.
func (EthereumTransactionAccessList) MarshalJSON ¶ added in v0.0.9
func (o EthereumTransactionAccessList) MarshalJSON() ([]byte, error)
func (*EthereumTransactionAccessList) SetAccessList ¶ added in v0.0.9
func (o *EthereumTransactionAccessList) SetAccessList(v []EthereumTransactionAccess)
SetAccessList gets a reference to the given []EthereumTransactionAccess and assigns it to the AccessList field.
func (EthereumTransactionAccessList) ToMap ¶ added in v0.0.9
func (o EthereumTransactionAccessList) ToMap() (map[string]interface{}, error)
type EthereumTransactionFlattenedTrace ¶ added in v0.0.9
type EthereumTransactionFlattenedTrace struct { Error *string `json:"error,omitempty"` Type *string `json:"type,omitempty"` From *string `json:"from,omitempty"` To *string `json:"to,omitempty"` Value *string `json:"value,omitempty"` Gas *int32 `json:"gas,omitempty"` GasUsed *int32 `json:"gas_used,omitempty"` Input *string `json:"input,omitempty"` Output *string `json:"output,omitempty"` SubTraces *int32 `json:"sub_traces,omitempty"` TraceAddress []int32 `json:"trace_address,omitempty"` TraceType *string `json:"trace_type,omitempty"` CallType *string `json:"call_type,omitempty"` TraceId *string `json:"trace_id,omitempty"` Status *int32 `json:"status,omitempty"` BlockHash *string `json:"block_hash,omitempty"` BlockNumber *int32 `json:"block_number,omitempty"` TransactionHash *string `json:"transaction_hash,omitempty"` TransactionIndex *int32 `json:"transaction_index,omitempty"` }
EthereumTransactionFlattenedTrace struct for EthereumTransactionFlattenedTrace
func NewEthereumTransactionFlattenedTrace ¶ added in v0.0.9
func NewEthereumTransactionFlattenedTrace() *EthereumTransactionFlattenedTrace
NewEthereumTransactionFlattenedTrace instantiates a new EthereumTransactionFlattenedTrace 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
func NewEthereumTransactionFlattenedTraceWithDefaults ¶ added in v0.0.9
func NewEthereumTransactionFlattenedTraceWithDefaults() *EthereumTransactionFlattenedTrace
NewEthereumTransactionFlattenedTraceWithDefaults instantiates a new EthereumTransactionFlattenedTrace 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
func (*EthereumTransactionFlattenedTrace) GetBlockHash ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetBlockHash() string
GetBlockHash returns the BlockHash field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetBlockHashOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetBlockHashOk() (*string, bool)
GetBlockHashOk returns a tuple with the BlockHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetBlockNumber ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetBlockNumber() int32
GetBlockNumber returns the BlockNumber field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetBlockNumberOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetBlockNumberOk() (*int32, bool)
GetBlockNumberOk returns a tuple with the BlockNumber field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetCallType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetCallType() string
GetCallType returns the CallType field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetCallTypeOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetCallTypeOk() (*string, bool)
GetCallTypeOk returns a tuple with the CallType field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetError ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetError() string
GetError returns the Error field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetErrorOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetErrorOk() (*string, bool)
GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetFrom ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetFrom() string
GetFrom returns the From field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetFromOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetFromOk() (*string, bool)
GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetGas ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetGas() int32
GetGas returns the Gas field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetGasOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetGasOk() (*int32, bool)
GetGasOk returns a tuple with the Gas field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetGasUsed ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetGasUsed() int32
GetGasUsed returns the GasUsed field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetGasUsedOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetGasUsedOk() (*int32, bool)
GetGasUsedOk returns a tuple with the GasUsed field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetInput ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetInput() string
GetInput returns the Input field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetInputOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetInputOk() (*string, bool)
GetInputOk returns a tuple with the Input field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetOutput ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetOutput() string
GetOutput returns the Output field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetOutputOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetOutputOk() (*string, bool)
GetOutputOk returns a tuple with the Output field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetStatus ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetStatus() int32
GetStatus returns the Status field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetStatusOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetStatusOk() (*int32, bool)
GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetSubTraces ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetSubTraces() int32
GetSubTraces returns the SubTraces field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetSubTracesOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetSubTracesOk() (*int32, bool)
GetSubTracesOk returns a tuple with the SubTraces field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetTo ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTo() string
GetTo returns the To field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetToOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetToOk() (*string, bool)
GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetTraceAddress ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTraceAddress() []int32
GetTraceAddress returns the TraceAddress field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetTraceAddressOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTraceAddressOk() ([]int32, bool)
GetTraceAddressOk returns a tuple with the TraceAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetTraceId ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTraceId() string
GetTraceId returns the TraceId field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetTraceIdOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTraceIdOk() (*string, bool)
GetTraceIdOk returns a tuple with the TraceId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetTraceType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTraceType() string
GetTraceType returns the TraceType field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetTraceTypeOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTraceTypeOk() (*string, bool)
GetTraceTypeOk returns a tuple with the TraceType field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetTransactionHash ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTransactionHash() string
GetTransactionHash returns the TransactionHash field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetTransactionHashOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTransactionHashOk() (*string, bool)
GetTransactionHashOk returns a tuple with the TransactionHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetTransactionIndex ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTransactionIndex() int32
GetTransactionIndex returns the TransactionIndex field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetTransactionIndexOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTransactionIndexOk() (*int32, bool)
GetTransactionIndexOk returns a tuple with the TransactionIndex field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetType() string
GetType returns the Type field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetTypeOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) GetValue ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetValue() string
GetValue returns the Value field value if set, zero value otherwise.
func (*EthereumTransactionFlattenedTrace) GetValueOk ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) GetValueOk() (*string, bool)
GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.
func (*EthereumTransactionFlattenedTrace) HasBlockHash ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasBlockHash() bool
HasBlockHash returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasBlockNumber ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasBlockNumber() bool
HasBlockNumber returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasCallType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasCallType() bool
HasCallType returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasError ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasError() bool
HasError returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasFrom ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasFrom() bool
HasFrom returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasGas ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasGas() bool
HasGas returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasGasUsed ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasGasUsed() bool
HasGasUsed returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasInput ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasInput() bool
HasInput returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasOutput ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasOutput() bool
HasOutput returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasStatus ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasStatus() bool
HasStatus returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasSubTraces ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasSubTraces() bool
HasSubTraces returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasTo ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasTo() bool
HasTo returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasTraceAddress ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasTraceAddress() bool
HasTraceAddress returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasTraceId ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasTraceId() bool
HasTraceId returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasTraceType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasTraceType() bool
HasTraceType returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasTransactionHash ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasTransactionHash() bool
HasTransactionHash returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasTransactionIndex ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasTransactionIndex() bool
HasTransactionIndex returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasType() bool
HasType returns a boolean if a field has been set.
func (*EthereumTransactionFlattenedTrace) HasValue ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) HasValue() bool
HasValue returns a boolean if a field has been set.
func (EthereumTransactionFlattenedTrace) MarshalJSON ¶ added in v0.0.9
func (o EthereumTransactionFlattenedTrace) MarshalJSON() ([]byte, error)
func (*EthereumTransactionFlattenedTrace) SetBlockHash ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetBlockHash(v string)
SetBlockHash gets a reference to the given string and assigns it to the BlockHash field.
func (*EthereumTransactionFlattenedTrace) SetBlockNumber ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetBlockNumber(v int32)
SetBlockNumber gets a reference to the given int32 and assigns it to the BlockNumber field.
func (*EthereumTransactionFlattenedTrace) SetCallType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetCallType(v string)
SetCallType gets a reference to the given string and assigns it to the CallType field.
func (*EthereumTransactionFlattenedTrace) SetError ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetError(v string)
SetError gets a reference to the given string and assigns it to the Error field.
func (*EthereumTransactionFlattenedTrace) SetFrom ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetFrom(v string)
SetFrom gets a reference to the given string and assigns it to the From field.
func (*EthereumTransactionFlattenedTrace) SetGas ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetGas(v int32)
SetGas gets a reference to the given int32 and assigns it to the Gas field.
func (*EthereumTransactionFlattenedTrace) SetGasUsed ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetGasUsed(v int32)
SetGasUsed gets a reference to the given int32 and assigns it to the GasUsed field.
func (*EthereumTransactionFlattenedTrace) SetInput ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetInput(v string)
SetInput gets a reference to the given string and assigns it to the Input field.
func (*EthereumTransactionFlattenedTrace) SetOutput ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetOutput(v string)
SetOutput gets a reference to the given string and assigns it to the Output field.
func (*EthereumTransactionFlattenedTrace) SetStatus ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetStatus(v int32)
SetStatus gets a reference to the given int32 and assigns it to the Status field.
func (*EthereumTransactionFlattenedTrace) SetSubTraces ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetSubTraces(v int32)
SetSubTraces gets a reference to the given int32 and assigns it to the SubTraces field.
func (*EthereumTransactionFlattenedTrace) SetTo ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetTo(v string)
SetTo gets a reference to the given string and assigns it to the To field.
func (*EthereumTransactionFlattenedTrace) SetTraceAddress ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetTraceAddress(v []int32)
SetTraceAddress gets a reference to the given []int32 and assigns it to the TraceAddress field.
func (*EthereumTransactionFlattenedTrace) SetTraceId ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetTraceId(v string)
SetTraceId gets a reference to the given string and assigns it to the TraceId field.
func (*EthereumTransactionFlattenedTrace) SetTraceType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetTraceType(v string)
SetTraceType gets a reference to the given string and assigns it to the TraceType field.
func (*EthereumTransactionFlattenedTrace) SetTransactionHash ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetTransactionHash(v string)
SetTransactionHash gets a reference to the given string and assigns it to the TransactionHash field.
func (*EthereumTransactionFlattenedTrace) SetTransactionIndex ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetTransactionIndex(v int32)
SetTransactionIndex gets a reference to the given int32 and assigns it to the TransactionIndex field.
func (*EthereumTransactionFlattenedTrace) SetType ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetType(v string)
SetType gets a reference to the given string and assigns it to the Type field.
func (*EthereumTransactionFlattenedTrace) SetValue ¶ added in v0.0.9
func (o *EthereumTransactionFlattenedTrace) SetValue(v string)
SetValue gets a reference to the given string and assigns it to the Value field.
func (EthereumTransactionFlattenedTrace) ToMap ¶ added in v0.0.9
func (o EthereumTransactionFlattenedTrace) ToMap() (map[string]interface{}, error)
type EthereumValidatorMetadata ¶
type EthereumValidatorMetadata struct { // The index of the validator in the validator set. Index string `json:"index"` // The public key of the validator. PublicKey string `json:"public_key"` // The address to which the validator's rewards are sent. WithdrawalAddress string `json:"withdrawal_address"` // Whether the validator has been slashed. Slashed bool `json:"slashed"` // The epoch at which the validator was activated. ActivationEpoch string `json:"activationEpoch"` // The epoch at which the validator exited. ExitEpoch string `json:"exitEpoch"` // The epoch at which the validator can withdraw. WithdrawableEpoch string `json:"withdrawableEpoch"` Balance Balance `json:"balance"` EffectiveBalance Balance `json:"effective_balance"` }
EthereumValidatorMetadata An Ethereum validator.
func NewEthereumValidatorMetadata ¶
func NewEthereumValidatorMetadata(index string, publicKey string, withdrawalAddress string, slashed bool, activationEpoch string, exitEpoch string, withdrawableEpoch string, balance Balance, effectiveBalance Balance) *EthereumValidatorMetadata
NewEthereumValidatorMetadata instantiates a new EthereumValidatorMetadata 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
func NewEthereumValidatorMetadataWithDefaults ¶
func NewEthereumValidatorMetadataWithDefaults() *EthereumValidatorMetadata
NewEthereumValidatorMetadataWithDefaults instantiates a new EthereumValidatorMetadata 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
func (*EthereumValidatorMetadata) GetActivationEpoch ¶
func (o *EthereumValidatorMetadata) GetActivationEpoch() string
GetActivationEpoch returns the ActivationEpoch field value
func (*EthereumValidatorMetadata) GetActivationEpochOk ¶
func (o *EthereumValidatorMetadata) GetActivationEpochOk() (*string, bool)
GetActivationEpochOk returns a tuple with the ActivationEpoch field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetBalance ¶
func (o *EthereumValidatorMetadata) GetBalance() Balance
GetBalance returns the Balance field value
func (*EthereumValidatorMetadata) GetBalanceOk ¶
func (o *EthereumValidatorMetadata) GetBalanceOk() (*Balance, bool)
GetBalanceOk returns a tuple with the Balance field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetEffectiveBalance ¶
func (o *EthereumValidatorMetadata) GetEffectiveBalance() Balance
GetEffectiveBalance returns the EffectiveBalance field value
func (*EthereumValidatorMetadata) GetEffectiveBalanceOk ¶
func (o *EthereumValidatorMetadata) GetEffectiveBalanceOk() (*Balance, bool)
GetEffectiveBalanceOk returns a tuple with the EffectiveBalance field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetExitEpoch ¶
func (o *EthereumValidatorMetadata) GetExitEpoch() string
GetExitEpoch returns the ExitEpoch field value
func (*EthereumValidatorMetadata) GetExitEpochOk ¶
func (o *EthereumValidatorMetadata) GetExitEpochOk() (*string, bool)
GetExitEpochOk returns a tuple with the ExitEpoch field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetIndex ¶
func (o *EthereumValidatorMetadata) GetIndex() string
GetIndex returns the Index field value
func (*EthereumValidatorMetadata) GetIndexOk ¶
func (o *EthereumValidatorMetadata) GetIndexOk() (*string, bool)
GetIndexOk returns a tuple with the Index field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetPublicKey ¶
func (o *EthereumValidatorMetadata) GetPublicKey() string
GetPublicKey returns the PublicKey field value
func (*EthereumValidatorMetadata) GetPublicKeyOk ¶
func (o *EthereumValidatorMetadata) GetPublicKeyOk() (*string, bool)
GetPublicKeyOk returns a tuple with the PublicKey field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetSlashed ¶
func (o *EthereumValidatorMetadata) GetSlashed() bool
GetSlashed returns the Slashed field value
func (*EthereumValidatorMetadata) GetSlashedOk ¶
func (o *EthereumValidatorMetadata) GetSlashedOk() (*bool, bool)
GetSlashedOk returns a tuple with the Slashed field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetWithdrawableEpoch ¶
func (o *EthereumValidatorMetadata) GetWithdrawableEpoch() string
GetWithdrawableEpoch returns the WithdrawableEpoch field value
func (*EthereumValidatorMetadata) GetWithdrawableEpochOk ¶
func (o *EthereumValidatorMetadata) GetWithdrawableEpochOk() (*string, bool)
GetWithdrawableEpochOk returns a tuple with the WithdrawableEpoch field value and a boolean to check if the value has been set.
func (*EthereumValidatorMetadata) GetWithdrawalAddress ¶
func (o *EthereumValidatorMetadata) GetWithdrawalAddress() string
GetWithdrawalAddress returns the WithdrawalAddress field value
func (*EthereumValidatorMetadata) GetWithdrawalAddressOk ¶
func (o *EthereumValidatorMetadata) GetWithdrawalAddressOk() (*string, bool)
GetWithdrawalAddressOk returns a tuple with the WithdrawalAddress field value and a boolean to check if the value has been set.
func (EthereumValidatorMetadata) MarshalJSON ¶
func (o EthereumValidatorMetadata) MarshalJSON() ([]byte, error)
func (*EthereumValidatorMetadata) SetActivationEpoch ¶
func (o *EthereumValidatorMetadata) SetActivationEpoch(v string)
SetActivationEpoch sets field value
func (*EthereumValidatorMetadata) SetBalance ¶
func (o *EthereumValidatorMetadata) SetBalance(v Balance)
SetBalance sets field value
func (*EthereumValidatorMetadata) SetEffectiveBalance ¶
func (o *EthereumValidatorMetadata) SetEffectiveBalance(v Balance)
SetEffectiveBalance sets field value
func (*EthereumValidatorMetadata) SetExitEpoch ¶
func (o *EthereumValidatorMetadata) SetExitEpoch(v string)
SetExitEpoch sets field value
func (*EthereumValidatorMetadata) SetIndex ¶
func (o *EthereumValidatorMetadata) SetIndex(v string)
SetIndex sets field value
func (*EthereumValidatorMetadata) SetPublicKey ¶
func (o *EthereumValidatorMetadata) SetPublicKey(v string)
SetPublicKey sets field value
func (*EthereumValidatorMetadata) SetSlashed ¶
func (o *EthereumValidatorMetadata) SetSlashed(v bool)
SetSlashed sets field value
func (*EthereumValidatorMetadata) SetWithdrawableEpoch ¶
func (o *EthereumValidatorMetadata) SetWithdrawableEpoch(v string)
SetWithdrawableEpoch sets field value
func (*EthereumValidatorMetadata) SetWithdrawalAddress ¶
func (o *EthereumValidatorMetadata) SetWithdrawalAddress(v string)
SetWithdrawalAddress sets field value
func (EthereumValidatorMetadata) ToMap ¶
func (o EthereumValidatorMetadata) ToMap() (map[string]interface{}, error)
func (*EthereumValidatorMetadata) UnmarshalJSON ¶
func (o *EthereumValidatorMetadata) UnmarshalJSON(data []byte) (err error)
type ExternalAddressesAPI ¶
type ExternalAddressesAPI interface { /* GetExternalAddressBalance Get the balance of an asset in an external address Get the balance of an asset in an external address @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the balance for @param assetId The ID of the asset to fetch the balance for @return ApiGetExternalAddressBalanceRequest */ GetExternalAddressBalance(ctx context.Context, networkId string, addressId string, assetId string) ApiGetExternalAddressBalanceRequest // GetExternalAddressBalanceExecute executes the request // @return Balance GetExternalAddressBalanceExecute(r ApiGetExternalAddressBalanceRequest) (*Balance, *http.Response, error) /* ListAddressTransactions List transactions for an address. List all transactions that interact with the address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the transactions for. @return ApiListAddressTransactionsRequest */ ListAddressTransactions(ctx context.Context, networkId string, addressId string) ApiListAddressTransactionsRequest // ListAddressTransactionsExecute executes the request // @return AddressTransactionList ListAddressTransactionsExecute(r ApiListAddressTransactionsRequest) (*AddressTransactionList, *http.Response, error) /* ListExternalAddressBalances Get the balances of an external address List all of the balances of an external address @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the balance for @return ApiListExternalAddressBalancesRequest */ ListExternalAddressBalances(ctx context.Context, networkId string, addressId string) ApiListExternalAddressBalancesRequest // ListExternalAddressBalancesExecute executes the request // @return AddressBalanceList ListExternalAddressBalancesExecute(r ApiListExternalAddressBalancesRequest) (*AddressBalanceList, *http.Response, error) /* RequestExternalFaucetFunds Request faucet funds for external address. Request faucet funds to be sent to external address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that is being fetched. @return ApiRequestExternalFaucetFundsRequest */ RequestExternalFaucetFunds(ctx context.Context, networkId string, addressId string) ApiRequestExternalFaucetFundsRequest // RequestExternalFaucetFundsExecute executes the request // @return FaucetTransaction RequestExternalFaucetFundsExecute(r ApiRequestExternalFaucetFundsRequest) (*FaucetTransaction, *http.Response, error) }
type ExternalAddressesAPIService ¶
type ExternalAddressesAPIService service
ExternalAddressesAPIService ExternalAddressesAPI service
func (*ExternalAddressesAPIService) GetExternalAddressBalance ¶
func (a *ExternalAddressesAPIService) GetExternalAddressBalance(ctx context.Context, networkId string, addressId string, assetId string) ApiGetExternalAddressBalanceRequest
GetExternalAddressBalance Get the balance of an asset in an external address
Get the balance of an asset in an external address
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the balance for @param assetId The ID of the asset to fetch the balance for @return ApiGetExternalAddressBalanceRequest
func (*ExternalAddressesAPIService) GetExternalAddressBalanceExecute ¶
func (a *ExternalAddressesAPIService) GetExternalAddressBalanceExecute(r ApiGetExternalAddressBalanceRequest) (*Balance, *http.Response, error)
Execute executes the request
@return Balance
func (*ExternalAddressesAPIService) ListAddressTransactions ¶ added in v0.0.9
func (a *ExternalAddressesAPIService) ListAddressTransactions(ctx context.Context, networkId string, addressId string) ApiListAddressTransactionsRequest
ListAddressTransactions List transactions for an address.
List all transactions that interact with the address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the transactions for. @return ApiListAddressTransactionsRequest
func (*ExternalAddressesAPIService) ListAddressTransactionsExecute ¶ added in v0.0.9
func (a *ExternalAddressesAPIService) ListAddressTransactionsExecute(r ApiListAddressTransactionsRequest) (*AddressTransactionList, *http.Response, error)
Execute executes the request
@return AddressTransactionList
func (*ExternalAddressesAPIService) ListExternalAddressBalances ¶
func (a *ExternalAddressesAPIService) ListExternalAddressBalances(ctx context.Context, networkId string, addressId string) ApiListExternalAddressBalancesRequest
ListExternalAddressBalances Get the balances of an external address
List all of the balances of an external address
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the balance for @return ApiListExternalAddressBalancesRequest
func (*ExternalAddressesAPIService) ListExternalAddressBalancesExecute ¶
func (a *ExternalAddressesAPIService) ListExternalAddressBalancesExecute(r ApiListExternalAddressBalancesRequest) (*AddressBalanceList, *http.Response, error)
Execute executes the request
@return AddressBalanceList
func (*ExternalAddressesAPIService) RequestExternalFaucetFunds ¶
func (a *ExternalAddressesAPIService) RequestExternalFaucetFunds(ctx context.Context, networkId string, addressId string) ApiRequestExternalFaucetFundsRequest
RequestExternalFaucetFunds Request faucet funds for external address.
Request faucet funds to be sent to external address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the wallet the address belongs to. @param addressId The onchain address of the address that is being fetched. @return ApiRequestExternalFaucetFundsRequest
func (*ExternalAddressesAPIService) RequestExternalFaucetFundsExecute ¶
func (a *ExternalAddressesAPIService) RequestExternalFaucetFundsExecute(r ApiRequestExternalFaucetFundsRequest) (*FaucetTransaction, *http.Response, error)
Execute executes the request
@return FaucetTransaction
type FaucetTransaction ¶
type FaucetTransaction struct { // The transaction hash of the transaction the faucet created. TransactionHash string `json:"transaction_hash"` // Link to the transaction on the blockchain explorer. TransactionLink string `json:"transaction_link"` }
FaucetTransaction The faucet transaction
func NewFaucetTransaction ¶
func NewFaucetTransaction(transactionHash string, transactionLink string) *FaucetTransaction
NewFaucetTransaction instantiates a new FaucetTransaction 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
func NewFaucetTransactionWithDefaults ¶
func NewFaucetTransactionWithDefaults() *FaucetTransaction
NewFaucetTransactionWithDefaults instantiates a new FaucetTransaction 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
func (*FaucetTransaction) GetTransactionHash ¶
func (o *FaucetTransaction) GetTransactionHash() string
GetTransactionHash returns the TransactionHash field value
func (*FaucetTransaction) GetTransactionHashOk ¶
func (o *FaucetTransaction) GetTransactionHashOk() (*string, bool)
GetTransactionHashOk returns a tuple with the TransactionHash field value and a boolean to check if the value has been set.
func (*FaucetTransaction) GetTransactionLink ¶
func (o *FaucetTransaction) GetTransactionLink() string
GetTransactionLink returns the TransactionLink field value
func (*FaucetTransaction) GetTransactionLinkOk ¶
func (o *FaucetTransaction) GetTransactionLinkOk() (*string, bool)
GetTransactionLinkOk returns a tuple with the TransactionLink field value and a boolean to check if the value has been set.
func (FaucetTransaction) MarshalJSON ¶
func (o FaucetTransaction) MarshalJSON() ([]byte, error)
func (*FaucetTransaction) SetTransactionHash ¶
func (o *FaucetTransaction) SetTransactionHash(v string)
SetTransactionHash sets field value
func (*FaucetTransaction) SetTransactionLink ¶
func (o *FaucetTransaction) SetTransactionLink(v string)
SetTransactionLink sets field value
func (FaucetTransaction) ToMap ¶
func (o FaucetTransaction) ToMap() (map[string]interface{}, error)
func (*FaucetTransaction) UnmarshalJSON ¶
func (o *FaucetTransaction) UnmarshalJSON(data []byte) (err error)
type FeatureSet ¶
type FeatureSet struct { // Whether the network supports a faucet Faucet bool `json:"faucet"` // Whether the network supports Server-Signers ServerSigner bool `json:"server_signer"` // Whether the network supports transfers Transfer bool `json:"transfer"` // Whether the network supports trading Trade bool `json:"trade"` // Whether the network supports staking Stake bool `json:"stake"` // Whether the network supports gasless sends GaslessSend bool `json:"gasless_send"` }
FeatureSet struct for FeatureSet
func NewFeatureSet ¶
func NewFeatureSet(faucet bool, serverSigner bool, transfer bool, trade bool, stake bool, gaslessSend bool) *FeatureSet
NewFeatureSet instantiates a new FeatureSet 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
func NewFeatureSetWithDefaults ¶
func NewFeatureSetWithDefaults() *FeatureSet
NewFeatureSetWithDefaults instantiates a new FeatureSet 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
func (*FeatureSet) GetFaucet ¶
func (o *FeatureSet) GetFaucet() bool
GetFaucet returns the Faucet field value
func (*FeatureSet) GetFaucetOk ¶
func (o *FeatureSet) GetFaucetOk() (*bool, bool)
GetFaucetOk returns a tuple with the Faucet field value and a boolean to check if the value has been set.
func (*FeatureSet) GetGaslessSend ¶
func (o *FeatureSet) GetGaslessSend() bool
GetGaslessSend returns the GaslessSend field value
func (*FeatureSet) GetGaslessSendOk ¶
func (o *FeatureSet) GetGaslessSendOk() (*bool, bool)
GetGaslessSendOk returns a tuple with the GaslessSend field value and a boolean to check if the value has been set.
func (*FeatureSet) GetServerSigner ¶
func (o *FeatureSet) GetServerSigner() bool
GetServerSigner returns the ServerSigner field value
func (*FeatureSet) GetServerSignerOk ¶
func (o *FeatureSet) GetServerSignerOk() (*bool, bool)
GetServerSignerOk returns a tuple with the ServerSigner field value and a boolean to check if the value has been set.
func (*FeatureSet) GetStake ¶
func (o *FeatureSet) GetStake() bool
GetStake returns the Stake field value
func (*FeatureSet) GetStakeOk ¶
func (o *FeatureSet) GetStakeOk() (*bool, bool)
GetStakeOk returns a tuple with the Stake field value and a boolean to check if the value has been set.
func (*FeatureSet) GetTrade ¶
func (o *FeatureSet) GetTrade() bool
GetTrade returns the Trade field value
func (*FeatureSet) GetTradeOk ¶
func (o *FeatureSet) GetTradeOk() (*bool, bool)
GetTradeOk returns a tuple with the Trade field value and a boolean to check if the value has been set.
func (*FeatureSet) GetTransfer ¶
func (o *FeatureSet) GetTransfer() bool
GetTransfer returns the Transfer field value
func (*FeatureSet) GetTransferOk ¶
func (o *FeatureSet) GetTransferOk() (*bool, bool)
GetTransferOk returns a tuple with the Transfer field value and a boolean to check if the value has been set.
func (FeatureSet) MarshalJSON ¶
func (o FeatureSet) MarshalJSON() ([]byte, error)
func (*FeatureSet) SetGaslessSend ¶
func (o *FeatureSet) SetGaslessSend(v bool)
SetGaslessSend sets field value
func (*FeatureSet) SetServerSigner ¶
func (o *FeatureSet) SetServerSigner(v bool)
SetServerSigner sets field value
func (*FeatureSet) SetTransfer ¶
func (o *FeatureSet) SetTransfer(v bool)
SetTransfer sets field value
func (FeatureSet) ToMap ¶
func (o FeatureSet) ToMap() (map[string]interface{}, error)
func (*FeatureSet) UnmarshalJSON ¶
func (o *FeatureSet) UnmarshalJSON(data []byte) (err error)
type FetchHistoricalStakingBalances200Response ¶
type FetchHistoricalStakingBalances200Response struct { Data []StakingBalance `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` }
FetchHistoricalStakingBalances200Response
func NewFetchHistoricalStakingBalances200Response ¶
func NewFetchHistoricalStakingBalances200Response(data []StakingBalance, hasMore bool, nextPage string) *FetchHistoricalStakingBalances200Response
NewFetchHistoricalStakingBalances200Response instantiates a new FetchHistoricalStakingBalances200Response 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
func NewFetchHistoricalStakingBalances200ResponseWithDefaults ¶
func NewFetchHistoricalStakingBalances200ResponseWithDefaults() *FetchHistoricalStakingBalances200Response
NewFetchHistoricalStakingBalances200ResponseWithDefaults instantiates a new FetchHistoricalStakingBalances200Response 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
func (*FetchHistoricalStakingBalances200Response) GetData ¶
func (o *FetchHistoricalStakingBalances200Response) GetData() []StakingBalance
GetData returns the Data field value
func (*FetchHistoricalStakingBalances200Response) GetDataOk ¶
func (o *FetchHistoricalStakingBalances200Response) GetDataOk() ([]StakingBalance, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*FetchHistoricalStakingBalances200Response) GetHasMore ¶
func (o *FetchHistoricalStakingBalances200Response) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*FetchHistoricalStakingBalances200Response) GetHasMoreOk ¶
func (o *FetchHistoricalStakingBalances200Response) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*FetchHistoricalStakingBalances200Response) GetNextPage ¶
func (o *FetchHistoricalStakingBalances200Response) GetNextPage() string
GetNextPage returns the NextPage field value
func (*FetchHistoricalStakingBalances200Response) GetNextPageOk ¶
func (o *FetchHistoricalStakingBalances200Response) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (FetchHistoricalStakingBalances200Response) MarshalJSON ¶
func (o FetchHistoricalStakingBalances200Response) MarshalJSON() ([]byte, error)
func (*FetchHistoricalStakingBalances200Response) SetData ¶
func (o *FetchHistoricalStakingBalances200Response) SetData(v []StakingBalance)
SetData sets field value
func (*FetchHistoricalStakingBalances200Response) SetHasMore ¶
func (o *FetchHistoricalStakingBalances200Response) SetHasMore(v bool)
SetHasMore sets field value
func (*FetchHistoricalStakingBalances200Response) SetNextPage ¶
func (o *FetchHistoricalStakingBalances200Response) SetNextPage(v string)
SetNextPage sets field value
func (FetchHistoricalStakingBalances200Response) ToMap ¶
func (o FetchHistoricalStakingBalances200Response) ToMap() (map[string]interface{}, error)
func (*FetchHistoricalStakingBalances200Response) UnmarshalJSON ¶
func (o *FetchHistoricalStakingBalances200Response) UnmarshalJSON(data []byte) (err error)
type FetchStakingRewards200Response ¶
type FetchStakingRewards200Response struct { Data []StakingReward `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` }
FetchStakingRewards200Response
func NewFetchStakingRewards200Response ¶
func NewFetchStakingRewards200Response(data []StakingReward, hasMore bool, nextPage string) *FetchStakingRewards200Response
NewFetchStakingRewards200Response instantiates a new FetchStakingRewards200Response 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
func NewFetchStakingRewards200ResponseWithDefaults ¶
func NewFetchStakingRewards200ResponseWithDefaults() *FetchStakingRewards200Response
NewFetchStakingRewards200ResponseWithDefaults instantiates a new FetchStakingRewards200Response 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
func (*FetchStakingRewards200Response) GetData ¶
func (o *FetchStakingRewards200Response) GetData() []StakingReward
GetData returns the Data field value
func (*FetchStakingRewards200Response) GetDataOk ¶
func (o *FetchStakingRewards200Response) GetDataOk() ([]StakingReward, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*FetchStakingRewards200Response) GetHasMore ¶
func (o *FetchStakingRewards200Response) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*FetchStakingRewards200Response) GetHasMoreOk ¶
func (o *FetchStakingRewards200Response) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*FetchStakingRewards200Response) GetNextPage ¶
func (o *FetchStakingRewards200Response) GetNextPage() string
GetNextPage returns the NextPage field value
func (*FetchStakingRewards200Response) GetNextPageOk ¶
func (o *FetchStakingRewards200Response) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (FetchStakingRewards200Response) MarshalJSON ¶
func (o FetchStakingRewards200Response) MarshalJSON() ([]byte, error)
func (*FetchStakingRewards200Response) SetData ¶
func (o *FetchStakingRewards200Response) SetData(v []StakingReward)
SetData sets field value
func (*FetchStakingRewards200Response) SetHasMore ¶
func (o *FetchStakingRewards200Response) SetHasMore(v bool)
SetHasMore sets field value
func (*FetchStakingRewards200Response) SetNextPage ¶
func (o *FetchStakingRewards200Response) SetNextPage(v string)
SetNextPage sets field value
func (FetchStakingRewards200Response) ToMap ¶
func (o FetchStakingRewards200Response) ToMap() (map[string]interface{}, error)
func (*FetchStakingRewards200Response) UnmarshalJSON ¶
func (o *FetchStakingRewards200Response) UnmarshalJSON(data []byte) (err error)
type FetchStakingRewardsRequest ¶
type FetchStakingRewardsRequest struct { // The ID of the blockchain network NetworkId string `json:"network_id"` // The ID of the asset for which the staking rewards are being fetched AssetId string `json:"asset_id"` // The onchain addresses for which the staking rewards are being fetched AddressIds []string `json:"address_ids"` // The start time of this reward period StartTime time.Time `json:"start_time"` // The end time of this reward period EndTime time.Time `json:"end_time"` Format StakingRewardFormat `json:"format"` }
FetchStakingRewardsRequest struct for FetchStakingRewardsRequest
func NewFetchStakingRewardsRequest ¶
func NewFetchStakingRewardsRequest(networkId string, assetId string, addressIds []string, startTime time.Time, endTime time.Time, format StakingRewardFormat) *FetchStakingRewardsRequest
NewFetchStakingRewardsRequest instantiates a new FetchStakingRewardsRequest 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
func NewFetchStakingRewardsRequestWithDefaults ¶
func NewFetchStakingRewardsRequestWithDefaults() *FetchStakingRewardsRequest
NewFetchStakingRewardsRequestWithDefaults instantiates a new FetchStakingRewardsRequest 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
func (*FetchStakingRewardsRequest) GetAddressIds ¶
func (o *FetchStakingRewardsRequest) GetAddressIds() []string
GetAddressIds returns the AddressIds field value
func (*FetchStakingRewardsRequest) GetAddressIdsOk ¶
func (o *FetchStakingRewardsRequest) GetAddressIdsOk() ([]string, bool)
GetAddressIdsOk returns a tuple with the AddressIds field value and a boolean to check if the value has been set.
func (*FetchStakingRewardsRequest) GetAssetId ¶
func (o *FetchStakingRewardsRequest) GetAssetId() string
GetAssetId returns the AssetId field value
func (*FetchStakingRewardsRequest) GetAssetIdOk ¶
func (o *FetchStakingRewardsRequest) GetAssetIdOk() (*string, bool)
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*FetchStakingRewardsRequest) GetEndTime ¶
func (o *FetchStakingRewardsRequest) GetEndTime() time.Time
GetEndTime returns the EndTime field value
func (*FetchStakingRewardsRequest) GetEndTimeOk ¶
func (o *FetchStakingRewardsRequest) GetEndTimeOk() (*time.Time, bool)
GetEndTimeOk returns a tuple with the EndTime field value and a boolean to check if the value has been set.
func (*FetchStakingRewardsRequest) GetFormat ¶
func (o *FetchStakingRewardsRequest) GetFormat() StakingRewardFormat
GetFormat returns the Format field value
func (*FetchStakingRewardsRequest) GetFormatOk ¶
func (o *FetchStakingRewardsRequest) GetFormatOk() (*StakingRewardFormat, bool)
GetFormatOk returns a tuple with the Format field value and a boolean to check if the value has been set.
func (*FetchStakingRewardsRequest) GetNetworkId ¶
func (o *FetchStakingRewardsRequest) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*FetchStakingRewardsRequest) GetNetworkIdOk ¶
func (o *FetchStakingRewardsRequest) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*FetchStakingRewardsRequest) GetStartTime ¶
func (o *FetchStakingRewardsRequest) GetStartTime() time.Time
GetStartTime returns the StartTime field value
func (*FetchStakingRewardsRequest) GetStartTimeOk ¶
func (o *FetchStakingRewardsRequest) GetStartTimeOk() (*time.Time, bool)
GetStartTimeOk returns a tuple with the StartTime field value and a boolean to check if the value has been set.
func (FetchStakingRewardsRequest) MarshalJSON ¶
func (o FetchStakingRewardsRequest) MarshalJSON() ([]byte, error)
func (*FetchStakingRewardsRequest) SetAddressIds ¶
func (o *FetchStakingRewardsRequest) SetAddressIds(v []string)
SetAddressIds sets field value
func (*FetchStakingRewardsRequest) SetAssetId ¶
func (o *FetchStakingRewardsRequest) SetAssetId(v string)
SetAssetId sets field value
func (*FetchStakingRewardsRequest) SetEndTime ¶
func (o *FetchStakingRewardsRequest) SetEndTime(v time.Time)
SetEndTime sets field value
func (*FetchStakingRewardsRequest) SetFormat ¶
func (o *FetchStakingRewardsRequest) SetFormat(v StakingRewardFormat)
SetFormat sets field value
func (*FetchStakingRewardsRequest) SetNetworkId ¶
func (o *FetchStakingRewardsRequest) SetNetworkId(v string)
SetNetworkId sets field value
func (*FetchStakingRewardsRequest) SetStartTime ¶
func (o *FetchStakingRewardsRequest) SetStartTime(v time.Time)
SetStartTime sets field value
func (FetchStakingRewardsRequest) ToMap ¶
func (o FetchStakingRewardsRequest) ToMap() (map[string]interface{}, error)
func (*FetchStakingRewardsRequest) UnmarshalJSON ¶
func (o *FetchStakingRewardsRequest) UnmarshalJSON(data []byte) (err error)
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 GetStakingContextRequest ¶
type GetStakingContextRequest struct { // The ID of the blockchain network NetworkId string `json:"network_id"` // The ID of the asset being staked AssetId string `json:"asset_id"` // The onchain address for which the staking context is being fetched AddressId string `json:"address_id"` Options map[string]string `json:"options"` }
GetStakingContextRequest struct for GetStakingContextRequest
func NewGetStakingContextRequest ¶
func NewGetStakingContextRequest(networkId string, assetId string, addressId string, options map[string]string) *GetStakingContextRequest
NewGetStakingContextRequest instantiates a new GetStakingContextRequest 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
func NewGetStakingContextRequestWithDefaults ¶
func NewGetStakingContextRequestWithDefaults() *GetStakingContextRequest
NewGetStakingContextRequestWithDefaults instantiates a new GetStakingContextRequest 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
func (*GetStakingContextRequest) GetAddressId ¶
func (o *GetStakingContextRequest) GetAddressId() string
GetAddressId returns the AddressId field value
func (*GetStakingContextRequest) GetAddressIdOk ¶
func (o *GetStakingContextRequest) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*GetStakingContextRequest) GetAssetId ¶
func (o *GetStakingContextRequest) GetAssetId() string
GetAssetId returns the AssetId field value
func (*GetStakingContextRequest) GetAssetIdOk ¶
func (o *GetStakingContextRequest) GetAssetIdOk() (*string, bool)
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*GetStakingContextRequest) GetNetworkId ¶
func (o *GetStakingContextRequest) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*GetStakingContextRequest) GetNetworkIdOk ¶
func (o *GetStakingContextRequest) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*GetStakingContextRequest) GetOptions ¶
func (o *GetStakingContextRequest) GetOptions() map[string]string
GetOptions returns the Options field value
func (*GetStakingContextRequest) GetOptionsOk ¶
func (o *GetStakingContextRequest) GetOptionsOk() (*map[string]string, bool)
GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.
func (GetStakingContextRequest) MarshalJSON ¶
func (o GetStakingContextRequest) MarshalJSON() ([]byte, error)
func (*GetStakingContextRequest) SetAddressId ¶
func (o *GetStakingContextRequest) SetAddressId(v string)
SetAddressId sets field value
func (*GetStakingContextRequest) SetAssetId ¶
func (o *GetStakingContextRequest) SetAssetId(v string)
SetAssetId sets field value
func (*GetStakingContextRequest) SetNetworkId ¶
func (o *GetStakingContextRequest) SetNetworkId(v string)
SetNetworkId sets field value
func (*GetStakingContextRequest) SetOptions ¶
func (o *GetStakingContextRequest) SetOptions(v map[string]string)
SetOptions sets field value
func (GetStakingContextRequest) ToMap ¶
func (o GetStakingContextRequest) ToMap() (map[string]interface{}, error)
func (*GetStakingContextRequest) UnmarshalJSON ¶
func (o *GetStakingContextRequest) UnmarshalJSON(data []byte) (err error)
type HistoricalBalance ¶
type HistoricalBalance struct { // The amount in the atomic units of the asset Amount string `json:"amount"` // The hash of the block at which the balance was recorded BlockHash string `json:"block_hash"` // The block height at which the balance was recorded BlockHeight string `json:"block_height"` Asset Asset `json:"asset"` }
HistoricalBalance The balance of an asset onchain at a particular block
func NewHistoricalBalance ¶
func NewHistoricalBalance(amount string, blockHash string, blockHeight string, asset Asset) *HistoricalBalance
NewHistoricalBalance instantiates a new HistoricalBalance 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
func NewHistoricalBalanceWithDefaults ¶
func NewHistoricalBalanceWithDefaults() *HistoricalBalance
NewHistoricalBalanceWithDefaults instantiates a new HistoricalBalance 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
func (*HistoricalBalance) GetAmount ¶
func (o *HistoricalBalance) GetAmount() string
GetAmount returns the Amount field value
func (*HistoricalBalance) GetAmountOk ¶
func (o *HistoricalBalance) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*HistoricalBalance) GetAsset ¶
func (o *HistoricalBalance) GetAsset() Asset
GetAsset returns the Asset field value
func (*HistoricalBalance) GetAssetOk ¶
func (o *HistoricalBalance) GetAssetOk() (*Asset, bool)
GetAssetOk returns a tuple with the Asset field value and a boolean to check if the value has been set.
func (*HistoricalBalance) GetBlockHash ¶
func (o *HistoricalBalance) GetBlockHash() string
GetBlockHash returns the BlockHash field value
func (*HistoricalBalance) GetBlockHashOk ¶
func (o *HistoricalBalance) GetBlockHashOk() (*string, bool)
GetBlockHashOk returns a tuple with the BlockHash field value and a boolean to check if the value has been set.
func (*HistoricalBalance) GetBlockHeight ¶
func (o *HistoricalBalance) GetBlockHeight() string
GetBlockHeight returns the BlockHeight field value
func (*HistoricalBalance) GetBlockHeightOk ¶
func (o *HistoricalBalance) GetBlockHeightOk() (*string, bool)
GetBlockHeightOk returns a tuple with the BlockHeight field value and a boolean to check if the value has been set.
func (HistoricalBalance) MarshalJSON ¶
func (o HistoricalBalance) MarshalJSON() ([]byte, error)
func (*HistoricalBalance) SetAmount ¶
func (o *HistoricalBalance) SetAmount(v string)
SetAmount sets field value
func (*HistoricalBalance) SetAsset ¶
func (o *HistoricalBalance) SetAsset(v Asset)
SetAsset sets field value
func (*HistoricalBalance) SetBlockHash ¶
func (o *HistoricalBalance) SetBlockHash(v string)
SetBlockHash sets field value
func (*HistoricalBalance) SetBlockHeight ¶
func (o *HistoricalBalance) SetBlockHeight(v string)
SetBlockHeight sets field value
func (HistoricalBalance) ToMap ¶
func (o HistoricalBalance) ToMap() (map[string]interface{}, error)
func (*HistoricalBalance) UnmarshalJSON ¶
func (o *HistoricalBalance) UnmarshalJSON(data []byte) (err error)
type MappedNullable ¶
type NFTContractOptions ¶ added in v0.0.9
type NFTContractOptions struct { // The name of the NFT Name string `json:"name"` // The symbol of the NFT Symbol string `json:"symbol"` }
NFTContractOptions Options for NFT contract creation
func NewNFTContractOptions ¶ added in v0.0.9
func NewNFTContractOptions(name string, symbol string) *NFTContractOptions
NewNFTContractOptions instantiates a new NFTContractOptions 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
func NewNFTContractOptionsWithDefaults ¶ added in v0.0.9
func NewNFTContractOptionsWithDefaults() *NFTContractOptions
NewNFTContractOptionsWithDefaults instantiates a new NFTContractOptions 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
func (*NFTContractOptions) GetName ¶ added in v0.0.9
func (o *NFTContractOptions) GetName() string
GetName returns the Name field value
func (*NFTContractOptions) GetNameOk ¶ added in v0.0.9
func (o *NFTContractOptions) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.
func (*NFTContractOptions) GetSymbol ¶ added in v0.0.9
func (o *NFTContractOptions) GetSymbol() string
GetSymbol returns the Symbol field value
func (*NFTContractOptions) GetSymbolOk ¶ added in v0.0.9
func (o *NFTContractOptions) GetSymbolOk() (*string, bool)
GetSymbolOk returns a tuple with the Symbol field value and a boolean to check if the value has been set.
func (NFTContractOptions) MarshalJSON ¶ added in v0.0.9
func (o NFTContractOptions) MarshalJSON() ([]byte, error)
func (*NFTContractOptions) SetName ¶ added in v0.0.9
func (o *NFTContractOptions) SetName(v string)
SetName sets field value
func (*NFTContractOptions) SetSymbol ¶ added in v0.0.9
func (o *NFTContractOptions) SetSymbol(v string)
SetSymbol sets field value
func (NFTContractOptions) ToMap ¶ added in v0.0.9
func (o NFTContractOptions) ToMap() (map[string]interface{}, error)
func (*NFTContractOptions) UnmarshalJSON ¶ added in v0.0.9
func (o *NFTContractOptions) UnmarshalJSON(data []byte) (err error)
type Network ¶
type Network struct { Id NetworkIdentifier `json:"id"` // The human-readable name of the blockchain network DisplayName string `json:"display_name"` // The chain ID of the blockchain network ChainId int32 `json:"chain_id"` // The protocol family of the blockchain network ProtocolFamily string `json:"protocol_family"` // Whether the network is a testnet or not IsTestnet bool `json:"is_testnet"` NativeAsset Asset `json:"native_asset"` FeatureSet FeatureSet `json:"feature_set"` // The BIP44 path prefix for the network AddressPathPrefix *string `json:"address_path_prefix,omitempty"` }
Network struct for Network
func NewNetwork ¶
func NewNetwork(id NetworkIdentifier, displayName string, chainId int32, protocolFamily string, isTestnet bool, nativeAsset Asset, featureSet FeatureSet) *Network
NewNetwork instantiates a new Network 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
func NewNetworkWithDefaults ¶
func NewNetworkWithDefaults() *Network
NewNetworkWithDefaults instantiates a new Network 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
func (*Network) GetAddressPathPrefix ¶
GetAddressPathPrefix returns the AddressPathPrefix field value if set, zero value otherwise.
func (*Network) GetAddressPathPrefixOk ¶
GetAddressPathPrefixOk returns a tuple with the AddressPathPrefix field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Network) GetChainId ¶
GetChainId returns the ChainId field value
func (*Network) GetChainIdOk ¶
GetChainIdOk returns a tuple with the ChainId field value and a boolean to check if the value has been set.
func (*Network) GetDisplayName ¶
GetDisplayName returns the DisplayName field value
func (*Network) GetDisplayNameOk ¶
GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.
func (*Network) GetFeatureSet ¶
func (o *Network) GetFeatureSet() FeatureSet
GetFeatureSet returns the FeatureSet field value
func (*Network) GetFeatureSetOk ¶
func (o *Network) GetFeatureSetOk() (*FeatureSet, bool)
GetFeatureSetOk returns a tuple with the FeatureSet field value and a boolean to check if the value has been set.
func (*Network) GetId ¶
func (o *Network) GetId() NetworkIdentifier
GetId returns the Id field value
func (*Network) GetIdOk ¶
func (o *Network) GetIdOk() (*NetworkIdentifier, bool)
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*Network) GetIsTestnet ¶
GetIsTestnet returns the IsTestnet field value
func (*Network) GetIsTestnetOk ¶
GetIsTestnetOk returns a tuple with the IsTestnet field value and a boolean to check if the value has been set.
func (*Network) GetNativeAsset ¶
GetNativeAsset returns the NativeAsset field value
func (*Network) GetNativeAssetOk ¶
GetNativeAssetOk returns a tuple with the NativeAsset field value and a boolean to check if the value has been set.
func (*Network) GetProtocolFamily ¶
GetProtocolFamily returns the ProtocolFamily field value
func (*Network) GetProtocolFamilyOk ¶
GetProtocolFamilyOk returns a tuple with the ProtocolFamily field value and a boolean to check if the value has been set.
func (*Network) HasAddressPathPrefix ¶
HasAddressPathPrefix returns a boolean if a field has been set.
func (Network) MarshalJSON ¶
func (*Network) SetAddressPathPrefix ¶
SetAddressPathPrefix gets a reference to the given string and assigns it to the AddressPathPrefix field.
func (*Network) SetDisplayName ¶
SetDisplayName sets field value
func (*Network) SetFeatureSet ¶
func (o *Network) SetFeatureSet(v FeatureSet)
SetFeatureSet sets field value
func (*Network) SetNativeAsset ¶
SetNativeAsset sets field value
func (*Network) SetProtocolFamily ¶
SetProtocolFamily sets field value
func (*Network) UnmarshalJSON ¶
type NetworkIdentifier ¶
type NetworkIdentifier string
NetworkIdentifier The ID of the blockchain network. This is unique across all networks, and takes the form of `<blockchain>-<network>`.
const ( NETWORKIDENTIFIER_BASE_SEPOLIA NetworkIdentifier = "base-sepolia" NETWORKIDENTIFIER_BASE_MAINNET NetworkIdentifier = "base-mainnet" NETWORKIDENTIFIER_ETHEREUM_HOLESKY NetworkIdentifier = "ethereum-holesky" NETWORKIDENTIFIER_ETHEREUM_MAINNET NetworkIdentifier = "ethereum-mainnet" NETWORKIDENTIFIER_POLYGON_MAINNET NetworkIdentifier = "polygon-mainnet" NETWORKIDENTIFIER_SOLANA_DEVNET NetworkIdentifier = "solana-devnet" NETWORKIDENTIFIER_SOLANA_MAINNET NetworkIdentifier = "solana-mainnet" NETWORKIDENTIFIER_ARBITRUM_MAINNET NetworkIdentifier = "arbitrum-mainnet" )
List of NetworkIdentifier
func NewNetworkIdentifierFromValue ¶
func NewNetworkIdentifierFromValue(v string) (*NetworkIdentifier, error)
NewNetworkIdentifierFromValue returns a pointer to a valid NetworkIdentifier for the value passed as argument, or an error if the value passed is not allowed by the enum
func (NetworkIdentifier) IsValid ¶
func (v NetworkIdentifier) IsValid() bool
IsValid return true if the value is valid for the enum, false otherwise
func (NetworkIdentifier) Ptr ¶
func (v NetworkIdentifier) Ptr() *NetworkIdentifier
Ptr returns reference to NetworkIdentifier value
func (*NetworkIdentifier) UnmarshalJSON ¶
func (v *NetworkIdentifier) UnmarshalJSON(src []byte) error
type NetworksAPI ¶
type NetworksAPI interface { /* GetNetwork Get network by ID Get network @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the network to fetch. @return ApiGetNetworkRequest */ GetNetwork(ctx context.Context, networkId string) ApiGetNetworkRequest // GetNetworkExecute executes the request // @return Network GetNetworkExecute(r ApiGetNetworkRequest) (*Network, *http.Response, error) }
type NetworksAPIService ¶
type NetworksAPIService service
NetworksAPIService NetworksAPI service
func (*NetworksAPIService) GetNetwork ¶
func (a *NetworksAPIService) GetNetwork(ctx context.Context, networkId string) ApiGetNetworkRequest
GetNetwork Get network by ID
Get network
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the network to fetch. @return ApiGetNetworkRequest
func (*NetworksAPIService) GetNetworkExecute ¶
func (a *NetworksAPIService) GetNetworkExecute(r ApiGetNetworkRequest) (*Network, *http.Response, error)
Execute executes the request
@return Network
type NullableAddress ¶
type NullableAddress struct {
// contains filtered or unexported fields
}
func NewNullableAddress ¶
func NewNullableAddress(val *Address) *NullableAddress
func (NullableAddress) Get ¶
func (v NullableAddress) Get() *Address
func (NullableAddress) IsSet ¶
func (v NullableAddress) IsSet() bool
func (NullableAddress) MarshalJSON ¶
func (v NullableAddress) MarshalJSON() ([]byte, error)
func (*NullableAddress) Set ¶
func (v *NullableAddress) Set(val *Address)
func (*NullableAddress) UnmarshalJSON ¶
func (v *NullableAddress) UnmarshalJSON(src []byte) error
func (*NullableAddress) Unset ¶
func (v *NullableAddress) Unset()
type NullableAddressBalanceList ¶
type NullableAddressBalanceList struct {
// contains filtered or unexported fields
}
func NewNullableAddressBalanceList ¶
func NewNullableAddressBalanceList(val *AddressBalanceList) *NullableAddressBalanceList
func (NullableAddressBalanceList) Get ¶
func (v NullableAddressBalanceList) Get() *AddressBalanceList
func (NullableAddressBalanceList) IsSet ¶
func (v NullableAddressBalanceList) IsSet() bool
func (NullableAddressBalanceList) MarshalJSON ¶
func (v NullableAddressBalanceList) MarshalJSON() ([]byte, error)
func (*NullableAddressBalanceList) Set ¶
func (v *NullableAddressBalanceList) Set(val *AddressBalanceList)
func (*NullableAddressBalanceList) UnmarshalJSON ¶
func (v *NullableAddressBalanceList) UnmarshalJSON(src []byte) error
func (*NullableAddressBalanceList) Unset ¶
func (v *NullableAddressBalanceList) Unset()
type NullableAddressHistoricalBalanceList ¶
type NullableAddressHistoricalBalanceList struct {
// contains filtered or unexported fields
}
func NewNullableAddressHistoricalBalanceList ¶
func NewNullableAddressHistoricalBalanceList(val *AddressHistoricalBalanceList) *NullableAddressHistoricalBalanceList
func (NullableAddressHistoricalBalanceList) Get ¶
func (v NullableAddressHistoricalBalanceList) Get() *AddressHistoricalBalanceList
func (NullableAddressHistoricalBalanceList) IsSet ¶
func (v NullableAddressHistoricalBalanceList) IsSet() bool
func (NullableAddressHistoricalBalanceList) MarshalJSON ¶
func (v NullableAddressHistoricalBalanceList) MarshalJSON() ([]byte, error)
func (*NullableAddressHistoricalBalanceList) Set ¶
func (v *NullableAddressHistoricalBalanceList) Set(val *AddressHistoricalBalanceList)
func (*NullableAddressHistoricalBalanceList) UnmarshalJSON ¶
func (v *NullableAddressHistoricalBalanceList) UnmarshalJSON(src []byte) error
func (*NullableAddressHistoricalBalanceList) Unset ¶
func (v *NullableAddressHistoricalBalanceList) Unset()
type NullableAddressList ¶
type NullableAddressList struct {
// contains filtered or unexported fields
}
func NewNullableAddressList ¶
func NewNullableAddressList(val *AddressList) *NullableAddressList
func (NullableAddressList) Get ¶
func (v NullableAddressList) Get() *AddressList
func (NullableAddressList) IsSet ¶
func (v NullableAddressList) IsSet() bool
func (NullableAddressList) MarshalJSON ¶
func (v NullableAddressList) MarshalJSON() ([]byte, error)
func (*NullableAddressList) Set ¶
func (v *NullableAddressList) Set(val *AddressList)
func (*NullableAddressList) UnmarshalJSON ¶
func (v *NullableAddressList) UnmarshalJSON(src []byte) error
func (*NullableAddressList) Unset ¶
func (v *NullableAddressList) Unset()
type NullableAddressTransactionList ¶ added in v0.0.9
type NullableAddressTransactionList struct {
// contains filtered or unexported fields
}
func NewNullableAddressTransactionList ¶ added in v0.0.9
func NewNullableAddressTransactionList(val *AddressTransactionList) *NullableAddressTransactionList
func (NullableAddressTransactionList) Get ¶ added in v0.0.9
func (v NullableAddressTransactionList) Get() *AddressTransactionList
func (NullableAddressTransactionList) IsSet ¶ added in v0.0.9
func (v NullableAddressTransactionList) IsSet() bool
func (NullableAddressTransactionList) MarshalJSON ¶ added in v0.0.9
func (v NullableAddressTransactionList) MarshalJSON() ([]byte, error)
func (*NullableAddressTransactionList) Set ¶ added in v0.0.9
func (v *NullableAddressTransactionList) Set(val *AddressTransactionList)
func (*NullableAddressTransactionList) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableAddressTransactionList) UnmarshalJSON(src []byte) error
func (*NullableAddressTransactionList) Unset ¶ added in v0.0.9
func (v *NullableAddressTransactionList) Unset()
type NullableAsset ¶
type NullableAsset struct {
// contains filtered or unexported fields
}
func NewNullableAsset ¶
func NewNullableAsset(val *Asset) *NullableAsset
func (NullableAsset) Get ¶
func (v NullableAsset) Get() *Asset
func (NullableAsset) IsSet ¶
func (v NullableAsset) IsSet() bool
func (NullableAsset) MarshalJSON ¶
func (v NullableAsset) MarshalJSON() ([]byte, error)
func (*NullableAsset) Set ¶
func (v *NullableAsset) Set(val *Asset)
func (*NullableAsset) UnmarshalJSON ¶
func (v *NullableAsset) UnmarshalJSON(src []byte) error
func (*NullableAsset) Unset ¶
func (v *NullableAsset) Unset()
type NullableBalance ¶
type NullableBalance struct {
// contains filtered or unexported fields
}
func NewNullableBalance ¶
func NewNullableBalance(val *Balance) *NullableBalance
func (NullableBalance) Get ¶
func (v NullableBalance) Get() *Balance
func (NullableBalance) IsSet ¶
func (v NullableBalance) IsSet() bool
func (NullableBalance) MarshalJSON ¶
func (v NullableBalance) MarshalJSON() ([]byte, error)
func (*NullableBalance) Set ¶
func (v *NullableBalance) Set(val *Balance)
func (*NullableBalance) UnmarshalJSON ¶
func (v *NullableBalance) UnmarshalJSON(src []byte) error
func (*NullableBalance) Unset ¶
func (v *NullableBalance) Unset()
type NullableBool ¶
type NullableBool struct {
// contains filtered or unexported fields
}
func NewNullableBool ¶
func NewNullableBool(val *bool) *NullableBool
func (NullableBool) Get ¶
func (v NullableBool) Get() *bool
func (NullableBool) IsSet ¶
func (v NullableBool) IsSet() bool
func (NullableBool) MarshalJSON ¶
func (v NullableBool) MarshalJSON() ([]byte, error)
func (*NullableBool) Set ¶
func (v *NullableBool) Set(val *bool)
func (*NullableBool) UnmarshalJSON ¶
func (v *NullableBool) UnmarshalJSON(src []byte) error
func (*NullableBool) Unset ¶
func (v *NullableBool) Unset()
type NullableBroadcastContractInvocationRequest ¶ added in v0.0.9
type NullableBroadcastContractInvocationRequest struct {
// contains filtered or unexported fields
}
func NewNullableBroadcastContractInvocationRequest ¶ added in v0.0.9
func NewNullableBroadcastContractInvocationRequest(val *BroadcastContractInvocationRequest) *NullableBroadcastContractInvocationRequest
func (NullableBroadcastContractInvocationRequest) IsSet ¶ added in v0.0.9
func (v NullableBroadcastContractInvocationRequest) IsSet() bool
func (NullableBroadcastContractInvocationRequest) MarshalJSON ¶ added in v0.0.9
func (v NullableBroadcastContractInvocationRequest) MarshalJSON() ([]byte, error)
func (*NullableBroadcastContractInvocationRequest) Set ¶ added in v0.0.9
func (v *NullableBroadcastContractInvocationRequest) Set(val *BroadcastContractInvocationRequest)
func (*NullableBroadcastContractInvocationRequest) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableBroadcastContractInvocationRequest) UnmarshalJSON(src []byte) error
func (*NullableBroadcastContractInvocationRequest) Unset ¶ added in v0.0.9
func (v *NullableBroadcastContractInvocationRequest) Unset()
type NullableBroadcastStakingOperationRequest ¶
type NullableBroadcastStakingOperationRequest struct {
// contains filtered or unexported fields
}
func NewNullableBroadcastStakingOperationRequest ¶
func NewNullableBroadcastStakingOperationRequest(val *BroadcastStakingOperationRequest) *NullableBroadcastStakingOperationRequest
func (NullableBroadcastStakingOperationRequest) IsSet ¶
func (v NullableBroadcastStakingOperationRequest) IsSet() bool
func (NullableBroadcastStakingOperationRequest) MarshalJSON ¶
func (v NullableBroadcastStakingOperationRequest) MarshalJSON() ([]byte, error)
func (*NullableBroadcastStakingOperationRequest) Set ¶
func (v *NullableBroadcastStakingOperationRequest) Set(val *BroadcastStakingOperationRequest)
func (*NullableBroadcastStakingOperationRequest) UnmarshalJSON ¶
func (v *NullableBroadcastStakingOperationRequest) UnmarshalJSON(src []byte) error
func (*NullableBroadcastStakingOperationRequest) Unset ¶
func (v *NullableBroadcastStakingOperationRequest) Unset()
type NullableBroadcastTradeRequest ¶
type NullableBroadcastTradeRequest struct {
// contains filtered or unexported fields
}
func NewNullableBroadcastTradeRequest ¶
func NewNullableBroadcastTradeRequest(val *BroadcastTradeRequest) *NullableBroadcastTradeRequest
func (NullableBroadcastTradeRequest) Get ¶
func (v NullableBroadcastTradeRequest) Get() *BroadcastTradeRequest
func (NullableBroadcastTradeRequest) IsSet ¶
func (v NullableBroadcastTradeRequest) IsSet() bool
func (NullableBroadcastTradeRequest) MarshalJSON ¶
func (v NullableBroadcastTradeRequest) MarshalJSON() ([]byte, error)
func (*NullableBroadcastTradeRequest) Set ¶
func (v *NullableBroadcastTradeRequest) Set(val *BroadcastTradeRequest)
func (*NullableBroadcastTradeRequest) UnmarshalJSON ¶
func (v *NullableBroadcastTradeRequest) UnmarshalJSON(src []byte) error
func (*NullableBroadcastTradeRequest) Unset ¶
func (v *NullableBroadcastTradeRequest) Unset()
type NullableBroadcastTransferRequest ¶
type NullableBroadcastTransferRequest struct {
// contains filtered or unexported fields
}
func NewNullableBroadcastTransferRequest ¶
func NewNullableBroadcastTransferRequest(val *BroadcastTransferRequest) *NullableBroadcastTransferRequest
func (NullableBroadcastTransferRequest) Get ¶
func (v NullableBroadcastTransferRequest) Get() *BroadcastTransferRequest
func (NullableBroadcastTransferRequest) IsSet ¶
func (v NullableBroadcastTransferRequest) IsSet() bool
func (NullableBroadcastTransferRequest) MarshalJSON ¶
func (v NullableBroadcastTransferRequest) MarshalJSON() ([]byte, error)
func (*NullableBroadcastTransferRequest) Set ¶
func (v *NullableBroadcastTransferRequest) Set(val *BroadcastTransferRequest)
func (*NullableBroadcastTransferRequest) UnmarshalJSON ¶
func (v *NullableBroadcastTransferRequest) UnmarshalJSON(src []byte) error
func (*NullableBroadcastTransferRequest) Unset ¶
func (v *NullableBroadcastTransferRequest) Unset()
type NullableBuildStakingOperationRequest ¶
type NullableBuildStakingOperationRequest struct {
// contains filtered or unexported fields
}
func NewNullableBuildStakingOperationRequest ¶
func NewNullableBuildStakingOperationRequest(val *BuildStakingOperationRequest) *NullableBuildStakingOperationRequest
func (NullableBuildStakingOperationRequest) Get ¶
func (v NullableBuildStakingOperationRequest) Get() *BuildStakingOperationRequest
func (NullableBuildStakingOperationRequest) IsSet ¶
func (v NullableBuildStakingOperationRequest) IsSet() bool
func (NullableBuildStakingOperationRequest) MarshalJSON ¶
func (v NullableBuildStakingOperationRequest) MarshalJSON() ([]byte, error)
func (*NullableBuildStakingOperationRequest) Set ¶
func (v *NullableBuildStakingOperationRequest) Set(val *BuildStakingOperationRequest)
func (*NullableBuildStakingOperationRequest) UnmarshalJSON ¶
func (v *NullableBuildStakingOperationRequest) UnmarshalJSON(src []byte) error
func (*NullableBuildStakingOperationRequest) Unset ¶
func (v *NullableBuildStakingOperationRequest) Unset()
type NullableContractEvent ¶
type NullableContractEvent struct {
// contains filtered or unexported fields
}
func NewNullableContractEvent ¶
func NewNullableContractEvent(val *ContractEvent) *NullableContractEvent
func (NullableContractEvent) Get ¶
func (v NullableContractEvent) Get() *ContractEvent
func (NullableContractEvent) IsSet ¶
func (v NullableContractEvent) IsSet() bool
func (NullableContractEvent) MarshalJSON ¶
func (v NullableContractEvent) MarshalJSON() ([]byte, error)
func (*NullableContractEvent) Set ¶
func (v *NullableContractEvent) Set(val *ContractEvent)
func (*NullableContractEvent) UnmarshalJSON ¶
func (v *NullableContractEvent) UnmarshalJSON(src []byte) error
func (*NullableContractEvent) Unset ¶
func (v *NullableContractEvent) Unset()
type NullableContractEventList ¶
type NullableContractEventList struct {
// contains filtered or unexported fields
}
func NewNullableContractEventList ¶
func NewNullableContractEventList(val *ContractEventList) *NullableContractEventList
func (NullableContractEventList) Get ¶
func (v NullableContractEventList) Get() *ContractEventList
func (NullableContractEventList) IsSet ¶
func (v NullableContractEventList) IsSet() bool
func (NullableContractEventList) MarshalJSON ¶
func (v NullableContractEventList) MarshalJSON() ([]byte, error)
func (*NullableContractEventList) Set ¶
func (v *NullableContractEventList) Set(val *ContractEventList)
func (*NullableContractEventList) UnmarshalJSON ¶
func (v *NullableContractEventList) UnmarshalJSON(src []byte) error
func (*NullableContractEventList) Unset ¶
func (v *NullableContractEventList) Unset()
type NullableContractInvocation ¶ added in v0.0.9
type NullableContractInvocation struct {
// contains filtered or unexported fields
}
func NewNullableContractInvocation ¶ added in v0.0.9
func NewNullableContractInvocation(val *ContractInvocation) *NullableContractInvocation
func (NullableContractInvocation) Get ¶ added in v0.0.9
func (v NullableContractInvocation) Get() *ContractInvocation
func (NullableContractInvocation) IsSet ¶ added in v0.0.9
func (v NullableContractInvocation) IsSet() bool
func (NullableContractInvocation) MarshalJSON ¶ added in v0.0.9
func (v NullableContractInvocation) MarshalJSON() ([]byte, error)
func (*NullableContractInvocation) Set ¶ added in v0.0.9
func (v *NullableContractInvocation) Set(val *ContractInvocation)
func (*NullableContractInvocation) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableContractInvocation) UnmarshalJSON(src []byte) error
func (*NullableContractInvocation) Unset ¶ added in v0.0.9
func (v *NullableContractInvocation) Unset()
type NullableContractInvocationList ¶ added in v0.0.9
type NullableContractInvocationList struct {
// contains filtered or unexported fields
}
func NewNullableContractInvocationList ¶ added in v0.0.9
func NewNullableContractInvocationList(val *ContractInvocationList) *NullableContractInvocationList
func (NullableContractInvocationList) Get ¶ added in v0.0.9
func (v NullableContractInvocationList) Get() *ContractInvocationList
func (NullableContractInvocationList) IsSet ¶ added in v0.0.9
func (v NullableContractInvocationList) IsSet() bool
func (NullableContractInvocationList) MarshalJSON ¶ added in v0.0.9
func (v NullableContractInvocationList) MarshalJSON() ([]byte, error)
func (*NullableContractInvocationList) Set ¶ added in v0.0.9
func (v *NullableContractInvocationList) Set(val *ContractInvocationList)
func (*NullableContractInvocationList) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableContractInvocationList) UnmarshalJSON(src []byte) error
func (*NullableContractInvocationList) Unset ¶ added in v0.0.9
func (v *NullableContractInvocationList) Unset()
type NullableCreateAddressRequest ¶
type NullableCreateAddressRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateAddressRequest ¶
func NewNullableCreateAddressRequest(val *CreateAddressRequest) *NullableCreateAddressRequest
func (NullableCreateAddressRequest) Get ¶
func (v NullableCreateAddressRequest) Get() *CreateAddressRequest
func (NullableCreateAddressRequest) IsSet ¶
func (v NullableCreateAddressRequest) IsSet() bool
func (NullableCreateAddressRequest) MarshalJSON ¶
func (v NullableCreateAddressRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateAddressRequest) Set ¶
func (v *NullableCreateAddressRequest) Set(val *CreateAddressRequest)
func (*NullableCreateAddressRequest) UnmarshalJSON ¶
func (v *NullableCreateAddressRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateAddressRequest) Unset ¶
func (v *NullableCreateAddressRequest) Unset()
type NullableCreateContractInvocationRequest ¶ added in v0.0.9
type NullableCreateContractInvocationRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateContractInvocationRequest ¶ added in v0.0.9
func NewNullableCreateContractInvocationRequest(val *CreateContractInvocationRequest) *NullableCreateContractInvocationRequest
func (NullableCreateContractInvocationRequest) IsSet ¶ added in v0.0.9
func (v NullableCreateContractInvocationRequest) IsSet() bool
func (NullableCreateContractInvocationRequest) MarshalJSON ¶ added in v0.0.9
func (v NullableCreateContractInvocationRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateContractInvocationRequest) Set ¶ added in v0.0.9
func (v *NullableCreateContractInvocationRequest) Set(val *CreateContractInvocationRequest)
func (*NullableCreateContractInvocationRequest) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableCreateContractInvocationRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateContractInvocationRequest) Unset ¶ added in v0.0.9
func (v *NullableCreateContractInvocationRequest) Unset()
type NullableCreatePayloadSignatureRequest ¶ added in v0.0.9
type NullableCreatePayloadSignatureRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreatePayloadSignatureRequest ¶ added in v0.0.9
func NewNullableCreatePayloadSignatureRequest(val *CreatePayloadSignatureRequest) *NullableCreatePayloadSignatureRequest
func (NullableCreatePayloadSignatureRequest) Get ¶ added in v0.0.9
func (v NullableCreatePayloadSignatureRequest) Get() *CreatePayloadSignatureRequest
func (NullableCreatePayloadSignatureRequest) IsSet ¶ added in v0.0.9
func (v NullableCreatePayloadSignatureRequest) IsSet() bool
func (NullableCreatePayloadSignatureRequest) MarshalJSON ¶ added in v0.0.9
func (v NullableCreatePayloadSignatureRequest) MarshalJSON() ([]byte, error)
func (*NullableCreatePayloadSignatureRequest) Set ¶ added in v0.0.9
func (v *NullableCreatePayloadSignatureRequest) Set(val *CreatePayloadSignatureRequest)
func (*NullableCreatePayloadSignatureRequest) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableCreatePayloadSignatureRequest) UnmarshalJSON(src []byte) error
func (*NullableCreatePayloadSignatureRequest) Unset ¶ added in v0.0.9
func (v *NullableCreatePayloadSignatureRequest) Unset()
type NullableCreateServerSignerRequest ¶
type NullableCreateServerSignerRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateServerSignerRequest ¶
func NewNullableCreateServerSignerRequest(val *CreateServerSignerRequest) *NullableCreateServerSignerRequest
func (NullableCreateServerSignerRequest) Get ¶
func (v NullableCreateServerSignerRequest) Get() *CreateServerSignerRequest
func (NullableCreateServerSignerRequest) IsSet ¶
func (v NullableCreateServerSignerRequest) IsSet() bool
func (NullableCreateServerSignerRequest) MarshalJSON ¶
func (v NullableCreateServerSignerRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateServerSignerRequest) Set ¶
func (v *NullableCreateServerSignerRequest) Set(val *CreateServerSignerRequest)
func (*NullableCreateServerSignerRequest) UnmarshalJSON ¶
func (v *NullableCreateServerSignerRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateServerSignerRequest) Unset ¶
func (v *NullableCreateServerSignerRequest) Unset()
type NullableCreateSmartContractRequest ¶ added in v0.0.9
type NullableCreateSmartContractRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateSmartContractRequest ¶ added in v0.0.9
func NewNullableCreateSmartContractRequest(val *CreateSmartContractRequest) *NullableCreateSmartContractRequest
func (NullableCreateSmartContractRequest) Get ¶ added in v0.0.9
func (v NullableCreateSmartContractRequest) Get() *CreateSmartContractRequest
func (NullableCreateSmartContractRequest) IsSet ¶ added in v0.0.9
func (v NullableCreateSmartContractRequest) IsSet() bool
func (NullableCreateSmartContractRequest) MarshalJSON ¶ added in v0.0.9
func (v NullableCreateSmartContractRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateSmartContractRequest) Set ¶ added in v0.0.9
func (v *NullableCreateSmartContractRequest) Set(val *CreateSmartContractRequest)
func (*NullableCreateSmartContractRequest) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableCreateSmartContractRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateSmartContractRequest) Unset ¶ added in v0.0.9
func (v *NullableCreateSmartContractRequest) Unset()
type NullableCreateStakingOperationRequest ¶
type NullableCreateStakingOperationRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateStakingOperationRequest ¶
func NewNullableCreateStakingOperationRequest(val *CreateStakingOperationRequest) *NullableCreateStakingOperationRequest
func (NullableCreateStakingOperationRequest) Get ¶
func (v NullableCreateStakingOperationRequest) Get() *CreateStakingOperationRequest
func (NullableCreateStakingOperationRequest) IsSet ¶
func (v NullableCreateStakingOperationRequest) IsSet() bool
func (NullableCreateStakingOperationRequest) MarshalJSON ¶
func (v NullableCreateStakingOperationRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateStakingOperationRequest) Set ¶
func (v *NullableCreateStakingOperationRequest) Set(val *CreateStakingOperationRequest)
func (*NullableCreateStakingOperationRequest) UnmarshalJSON ¶
func (v *NullableCreateStakingOperationRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateStakingOperationRequest) Unset ¶
func (v *NullableCreateStakingOperationRequest) Unset()
type NullableCreateTradeRequest ¶
type NullableCreateTradeRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateTradeRequest ¶
func NewNullableCreateTradeRequest(val *CreateTradeRequest) *NullableCreateTradeRequest
func (NullableCreateTradeRequest) Get ¶
func (v NullableCreateTradeRequest) Get() *CreateTradeRequest
func (NullableCreateTradeRequest) IsSet ¶
func (v NullableCreateTradeRequest) IsSet() bool
func (NullableCreateTradeRequest) MarshalJSON ¶
func (v NullableCreateTradeRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateTradeRequest) Set ¶
func (v *NullableCreateTradeRequest) Set(val *CreateTradeRequest)
func (*NullableCreateTradeRequest) UnmarshalJSON ¶
func (v *NullableCreateTradeRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateTradeRequest) Unset ¶
func (v *NullableCreateTradeRequest) Unset()
type NullableCreateTransferRequest ¶
type NullableCreateTransferRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateTransferRequest ¶
func NewNullableCreateTransferRequest(val *CreateTransferRequest) *NullableCreateTransferRequest
func (NullableCreateTransferRequest) Get ¶
func (v NullableCreateTransferRequest) Get() *CreateTransferRequest
func (NullableCreateTransferRequest) IsSet ¶
func (v NullableCreateTransferRequest) IsSet() bool
func (NullableCreateTransferRequest) MarshalJSON ¶
func (v NullableCreateTransferRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateTransferRequest) Set ¶
func (v *NullableCreateTransferRequest) Set(val *CreateTransferRequest)
func (*NullableCreateTransferRequest) UnmarshalJSON ¶
func (v *NullableCreateTransferRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateTransferRequest) Unset ¶
func (v *NullableCreateTransferRequest) Unset()
type NullableCreateWalletRequest ¶
type NullableCreateWalletRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateWalletRequest ¶
func NewNullableCreateWalletRequest(val *CreateWalletRequest) *NullableCreateWalletRequest
func (NullableCreateWalletRequest) Get ¶
func (v NullableCreateWalletRequest) Get() *CreateWalletRequest
func (NullableCreateWalletRequest) IsSet ¶
func (v NullableCreateWalletRequest) IsSet() bool
func (NullableCreateWalletRequest) MarshalJSON ¶
func (v NullableCreateWalletRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateWalletRequest) Set ¶
func (v *NullableCreateWalletRequest) Set(val *CreateWalletRequest)
func (*NullableCreateWalletRequest) UnmarshalJSON ¶
func (v *NullableCreateWalletRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateWalletRequest) Unset ¶
func (v *NullableCreateWalletRequest) Unset()
type NullableCreateWalletRequestWallet ¶
type NullableCreateWalletRequestWallet struct {
// contains filtered or unexported fields
}
func NewNullableCreateWalletRequestWallet ¶
func NewNullableCreateWalletRequestWallet(val *CreateWalletRequestWallet) *NullableCreateWalletRequestWallet
func (NullableCreateWalletRequestWallet) Get ¶
func (v NullableCreateWalletRequestWallet) Get() *CreateWalletRequestWallet
func (NullableCreateWalletRequestWallet) IsSet ¶
func (v NullableCreateWalletRequestWallet) IsSet() bool
func (NullableCreateWalletRequestWallet) MarshalJSON ¶
func (v NullableCreateWalletRequestWallet) MarshalJSON() ([]byte, error)
func (*NullableCreateWalletRequestWallet) Set ¶
func (v *NullableCreateWalletRequestWallet) Set(val *CreateWalletRequestWallet)
func (*NullableCreateWalletRequestWallet) UnmarshalJSON ¶
func (v *NullableCreateWalletRequestWallet) UnmarshalJSON(src []byte) error
func (*NullableCreateWalletRequestWallet) Unset ¶
func (v *NullableCreateWalletRequestWallet) Unset()
type NullableCreateWebhookRequest ¶
type NullableCreateWebhookRequest struct {
// contains filtered or unexported fields
}
func NewNullableCreateWebhookRequest ¶
func NewNullableCreateWebhookRequest(val *CreateWebhookRequest) *NullableCreateWebhookRequest
func (NullableCreateWebhookRequest) Get ¶
func (v NullableCreateWebhookRequest) Get() *CreateWebhookRequest
func (NullableCreateWebhookRequest) IsSet ¶
func (v NullableCreateWebhookRequest) IsSet() bool
func (NullableCreateWebhookRequest) MarshalJSON ¶
func (v NullableCreateWebhookRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateWebhookRequest) Set ¶
func (v *NullableCreateWebhookRequest) Set(val *CreateWebhookRequest)
func (*NullableCreateWebhookRequest) UnmarshalJSON ¶
func (v *NullableCreateWebhookRequest) UnmarshalJSON(src []byte) error
func (*NullableCreateWebhookRequest) Unset ¶
func (v *NullableCreateWebhookRequest) Unset()
type NullableDeploySmartContractRequest ¶ added in v0.0.9
type NullableDeploySmartContractRequest struct {
// contains filtered or unexported fields
}
func NewNullableDeploySmartContractRequest ¶ added in v0.0.9
func NewNullableDeploySmartContractRequest(val *DeploySmartContractRequest) *NullableDeploySmartContractRequest
func (NullableDeploySmartContractRequest) Get ¶ added in v0.0.9
func (v NullableDeploySmartContractRequest) Get() *DeploySmartContractRequest
func (NullableDeploySmartContractRequest) IsSet ¶ added in v0.0.9
func (v NullableDeploySmartContractRequest) IsSet() bool
func (NullableDeploySmartContractRequest) MarshalJSON ¶ added in v0.0.9
func (v NullableDeploySmartContractRequest) MarshalJSON() ([]byte, error)
func (*NullableDeploySmartContractRequest) Set ¶ added in v0.0.9
func (v *NullableDeploySmartContractRequest) Set(val *DeploySmartContractRequest)
func (*NullableDeploySmartContractRequest) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableDeploySmartContractRequest) UnmarshalJSON(src []byte) error
func (*NullableDeploySmartContractRequest) Unset ¶ added in v0.0.9
func (v *NullableDeploySmartContractRequest) Unset()
type NullableERC20TransferEvent ¶ added in v0.0.9
type NullableERC20TransferEvent struct {
// contains filtered or unexported fields
}
func NewNullableERC20TransferEvent ¶ added in v0.0.9
func NewNullableERC20TransferEvent(val *ERC20TransferEvent) *NullableERC20TransferEvent
func (NullableERC20TransferEvent) Get ¶ added in v0.0.9
func (v NullableERC20TransferEvent) Get() *ERC20TransferEvent
func (NullableERC20TransferEvent) IsSet ¶ added in v0.0.9
func (v NullableERC20TransferEvent) IsSet() bool
func (NullableERC20TransferEvent) MarshalJSON ¶ added in v0.0.9
func (v NullableERC20TransferEvent) MarshalJSON() ([]byte, error)
func (*NullableERC20TransferEvent) Set ¶ added in v0.0.9
func (v *NullableERC20TransferEvent) Set(val *ERC20TransferEvent)
func (*NullableERC20TransferEvent) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableERC20TransferEvent) UnmarshalJSON(src []byte) error
func (*NullableERC20TransferEvent) Unset ¶ added in v0.0.9
func (v *NullableERC20TransferEvent) Unset()
type NullableERC721TransferEvent ¶ added in v0.0.9
type NullableERC721TransferEvent struct {
// contains filtered or unexported fields
}
func NewNullableERC721TransferEvent ¶ added in v0.0.9
func NewNullableERC721TransferEvent(val *ERC721TransferEvent) *NullableERC721TransferEvent
func (NullableERC721TransferEvent) Get ¶ added in v0.0.9
func (v NullableERC721TransferEvent) Get() *ERC721TransferEvent
func (NullableERC721TransferEvent) IsSet ¶ added in v0.0.9
func (v NullableERC721TransferEvent) IsSet() bool
func (NullableERC721TransferEvent) MarshalJSON ¶ added in v0.0.9
func (v NullableERC721TransferEvent) MarshalJSON() ([]byte, error)
func (*NullableERC721TransferEvent) Set ¶ added in v0.0.9
func (v *NullableERC721TransferEvent) Set(val *ERC721TransferEvent)
func (*NullableERC721TransferEvent) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableERC721TransferEvent) UnmarshalJSON(src []byte) error
func (*NullableERC721TransferEvent) Unset ¶ added in v0.0.9
func (v *NullableERC721TransferEvent) Unset()
type NullableError ¶
type NullableError struct {
// contains filtered or unexported fields
}
func NewNullableError ¶
func NewNullableError(val *Error) *NullableError
func (NullableError) Get ¶
func (v NullableError) Get() *Error
func (NullableError) IsSet ¶
func (v NullableError) IsSet() bool
func (NullableError) MarshalJSON ¶
func (v NullableError) MarshalJSON() ([]byte, error)
func (*NullableError) Set ¶
func (v *NullableError) Set(val *Error)
func (*NullableError) UnmarshalJSON ¶
func (v *NullableError) UnmarshalJSON(src []byte) error
func (*NullableError) Unset ¶
func (v *NullableError) Unset()
type NullableEthereumTransaction ¶ added in v0.0.9
type NullableEthereumTransaction struct {
// contains filtered or unexported fields
}
func NewNullableEthereumTransaction ¶ added in v0.0.9
func NewNullableEthereumTransaction(val *EthereumTransaction) *NullableEthereumTransaction
func (NullableEthereumTransaction) Get ¶ added in v0.0.9
func (v NullableEthereumTransaction) Get() *EthereumTransaction
func (NullableEthereumTransaction) IsSet ¶ added in v0.0.9
func (v NullableEthereumTransaction) IsSet() bool
func (NullableEthereumTransaction) MarshalJSON ¶ added in v0.0.9
func (v NullableEthereumTransaction) MarshalJSON() ([]byte, error)
func (*NullableEthereumTransaction) Set ¶ added in v0.0.9
func (v *NullableEthereumTransaction) Set(val *EthereumTransaction)
func (*NullableEthereumTransaction) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableEthereumTransaction) UnmarshalJSON(src []byte) error
func (*NullableEthereumTransaction) Unset ¶ added in v0.0.9
func (v *NullableEthereumTransaction) Unset()
type NullableEthereumTransactionAccess ¶ added in v0.0.9
type NullableEthereumTransactionAccess struct {
// contains filtered or unexported fields
}
func NewNullableEthereumTransactionAccess ¶ added in v0.0.9
func NewNullableEthereumTransactionAccess(val *EthereumTransactionAccess) *NullableEthereumTransactionAccess
func (NullableEthereumTransactionAccess) Get ¶ added in v0.0.9
func (v NullableEthereumTransactionAccess) Get() *EthereumTransactionAccess
func (NullableEthereumTransactionAccess) IsSet ¶ added in v0.0.9
func (v NullableEthereumTransactionAccess) IsSet() bool
func (NullableEthereumTransactionAccess) MarshalJSON ¶ added in v0.0.9
func (v NullableEthereumTransactionAccess) MarshalJSON() ([]byte, error)
func (*NullableEthereumTransactionAccess) Set ¶ added in v0.0.9
func (v *NullableEthereumTransactionAccess) Set(val *EthereumTransactionAccess)
func (*NullableEthereumTransactionAccess) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableEthereumTransactionAccess) UnmarshalJSON(src []byte) error
func (*NullableEthereumTransactionAccess) Unset ¶ added in v0.0.9
func (v *NullableEthereumTransactionAccess) Unset()
type NullableEthereumTransactionAccessList ¶ added in v0.0.9
type NullableEthereumTransactionAccessList struct {
// contains filtered or unexported fields
}
func NewNullableEthereumTransactionAccessList ¶ added in v0.0.9
func NewNullableEthereumTransactionAccessList(val *EthereumTransactionAccessList) *NullableEthereumTransactionAccessList
func (NullableEthereumTransactionAccessList) Get ¶ added in v0.0.9
func (v NullableEthereumTransactionAccessList) Get() *EthereumTransactionAccessList
func (NullableEthereumTransactionAccessList) IsSet ¶ added in v0.0.9
func (v NullableEthereumTransactionAccessList) IsSet() bool
func (NullableEthereumTransactionAccessList) MarshalJSON ¶ added in v0.0.9
func (v NullableEthereumTransactionAccessList) MarshalJSON() ([]byte, error)
func (*NullableEthereumTransactionAccessList) Set ¶ added in v0.0.9
func (v *NullableEthereumTransactionAccessList) Set(val *EthereumTransactionAccessList)
func (*NullableEthereumTransactionAccessList) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableEthereumTransactionAccessList) UnmarshalJSON(src []byte) error
func (*NullableEthereumTransactionAccessList) Unset ¶ added in v0.0.9
func (v *NullableEthereumTransactionAccessList) Unset()
type NullableEthereumTransactionFlattenedTrace ¶ added in v0.0.9
type NullableEthereumTransactionFlattenedTrace struct {
// contains filtered or unexported fields
}
func NewNullableEthereumTransactionFlattenedTrace ¶ added in v0.0.9
func NewNullableEthereumTransactionFlattenedTrace(val *EthereumTransactionFlattenedTrace) *NullableEthereumTransactionFlattenedTrace
func (NullableEthereumTransactionFlattenedTrace) IsSet ¶ added in v0.0.9
func (v NullableEthereumTransactionFlattenedTrace) IsSet() bool
func (NullableEthereumTransactionFlattenedTrace) MarshalJSON ¶ added in v0.0.9
func (v NullableEthereumTransactionFlattenedTrace) MarshalJSON() ([]byte, error)
func (*NullableEthereumTransactionFlattenedTrace) Set ¶ added in v0.0.9
func (v *NullableEthereumTransactionFlattenedTrace) Set(val *EthereumTransactionFlattenedTrace)
func (*NullableEthereumTransactionFlattenedTrace) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableEthereumTransactionFlattenedTrace) UnmarshalJSON(src []byte) error
func (*NullableEthereumTransactionFlattenedTrace) Unset ¶ added in v0.0.9
func (v *NullableEthereumTransactionFlattenedTrace) Unset()
type NullableEthereumValidatorMetadata ¶
type NullableEthereumValidatorMetadata struct {
// contains filtered or unexported fields
}
func NewNullableEthereumValidatorMetadata ¶
func NewNullableEthereumValidatorMetadata(val *EthereumValidatorMetadata) *NullableEthereumValidatorMetadata
func (NullableEthereumValidatorMetadata) Get ¶
func (v NullableEthereumValidatorMetadata) Get() *EthereumValidatorMetadata
func (NullableEthereumValidatorMetadata) IsSet ¶
func (v NullableEthereumValidatorMetadata) IsSet() bool
func (NullableEthereumValidatorMetadata) MarshalJSON ¶
func (v NullableEthereumValidatorMetadata) MarshalJSON() ([]byte, error)
func (*NullableEthereumValidatorMetadata) Set ¶
func (v *NullableEthereumValidatorMetadata) Set(val *EthereumValidatorMetadata)
func (*NullableEthereumValidatorMetadata) UnmarshalJSON ¶
func (v *NullableEthereumValidatorMetadata) UnmarshalJSON(src []byte) error
func (*NullableEthereumValidatorMetadata) Unset ¶
func (v *NullableEthereumValidatorMetadata) Unset()
type NullableFaucetTransaction ¶
type NullableFaucetTransaction struct {
// contains filtered or unexported fields
}
func NewNullableFaucetTransaction ¶
func NewNullableFaucetTransaction(val *FaucetTransaction) *NullableFaucetTransaction
func (NullableFaucetTransaction) Get ¶
func (v NullableFaucetTransaction) Get() *FaucetTransaction
func (NullableFaucetTransaction) IsSet ¶
func (v NullableFaucetTransaction) IsSet() bool
func (NullableFaucetTransaction) MarshalJSON ¶
func (v NullableFaucetTransaction) MarshalJSON() ([]byte, error)
func (*NullableFaucetTransaction) Set ¶
func (v *NullableFaucetTransaction) Set(val *FaucetTransaction)
func (*NullableFaucetTransaction) UnmarshalJSON ¶
func (v *NullableFaucetTransaction) UnmarshalJSON(src []byte) error
func (*NullableFaucetTransaction) Unset ¶
func (v *NullableFaucetTransaction) Unset()
type NullableFeatureSet ¶
type NullableFeatureSet struct {
// contains filtered or unexported fields
}
func NewNullableFeatureSet ¶
func NewNullableFeatureSet(val *FeatureSet) *NullableFeatureSet
func (NullableFeatureSet) Get ¶
func (v NullableFeatureSet) Get() *FeatureSet
func (NullableFeatureSet) IsSet ¶
func (v NullableFeatureSet) IsSet() bool
func (NullableFeatureSet) MarshalJSON ¶
func (v NullableFeatureSet) MarshalJSON() ([]byte, error)
func (*NullableFeatureSet) Set ¶
func (v *NullableFeatureSet) Set(val *FeatureSet)
func (*NullableFeatureSet) UnmarshalJSON ¶
func (v *NullableFeatureSet) UnmarshalJSON(src []byte) error
func (*NullableFeatureSet) Unset ¶
func (v *NullableFeatureSet) Unset()
type NullableFetchHistoricalStakingBalances200Response ¶
type NullableFetchHistoricalStakingBalances200Response struct {
// contains filtered or unexported fields
}
func NewNullableFetchHistoricalStakingBalances200Response ¶
func NewNullableFetchHistoricalStakingBalances200Response(val *FetchHistoricalStakingBalances200Response) *NullableFetchHistoricalStakingBalances200Response
func (NullableFetchHistoricalStakingBalances200Response) IsSet ¶
func (v NullableFetchHistoricalStakingBalances200Response) IsSet() bool
func (NullableFetchHistoricalStakingBalances200Response) MarshalJSON ¶
func (v NullableFetchHistoricalStakingBalances200Response) MarshalJSON() ([]byte, error)
func (*NullableFetchHistoricalStakingBalances200Response) UnmarshalJSON ¶
func (v *NullableFetchHistoricalStakingBalances200Response) UnmarshalJSON(src []byte) error
func (*NullableFetchHistoricalStakingBalances200Response) Unset ¶
func (v *NullableFetchHistoricalStakingBalances200Response) Unset()
type NullableFetchStakingRewards200Response ¶
type NullableFetchStakingRewards200Response struct {
// contains filtered or unexported fields
}
func NewNullableFetchStakingRewards200Response ¶
func NewNullableFetchStakingRewards200Response(val *FetchStakingRewards200Response) *NullableFetchStakingRewards200Response
func (NullableFetchStakingRewards200Response) Get ¶
func (v NullableFetchStakingRewards200Response) Get() *FetchStakingRewards200Response
func (NullableFetchStakingRewards200Response) IsSet ¶
func (v NullableFetchStakingRewards200Response) IsSet() bool
func (NullableFetchStakingRewards200Response) MarshalJSON ¶
func (v NullableFetchStakingRewards200Response) MarshalJSON() ([]byte, error)
func (*NullableFetchStakingRewards200Response) Set ¶
func (v *NullableFetchStakingRewards200Response) Set(val *FetchStakingRewards200Response)
func (*NullableFetchStakingRewards200Response) UnmarshalJSON ¶
func (v *NullableFetchStakingRewards200Response) UnmarshalJSON(src []byte) error
func (*NullableFetchStakingRewards200Response) Unset ¶
func (v *NullableFetchStakingRewards200Response) Unset()
type NullableFetchStakingRewardsRequest ¶
type NullableFetchStakingRewardsRequest struct {
// contains filtered or unexported fields
}
func NewNullableFetchStakingRewardsRequest ¶
func NewNullableFetchStakingRewardsRequest(val *FetchStakingRewardsRequest) *NullableFetchStakingRewardsRequest
func (NullableFetchStakingRewardsRequest) Get ¶
func (v NullableFetchStakingRewardsRequest) Get() *FetchStakingRewardsRequest
func (NullableFetchStakingRewardsRequest) IsSet ¶
func (v NullableFetchStakingRewardsRequest) IsSet() bool
func (NullableFetchStakingRewardsRequest) MarshalJSON ¶
func (v NullableFetchStakingRewardsRequest) MarshalJSON() ([]byte, error)
func (*NullableFetchStakingRewardsRequest) Set ¶
func (v *NullableFetchStakingRewardsRequest) Set(val *FetchStakingRewardsRequest)
func (*NullableFetchStakingRewardsRequest) UnmarshalJSON ¶
func (v *NullableFetchStakingRewardsRequest) UnmarshalJSON(src []byte) error
func (*NullableFetchStakingRewardsRequest) Unset ¶
func (v *NullableFetchStakingRewardsRequest) Unset()
type NullableFloat32 ¶
type NullableFloat32 struct {
// contains filtered or unexported fields
}
func NewNullableFloat32 ¶
func NewNullableFloat32(val *float32) *NullableFloat32
func (NullableFloat32) Get ¶
func (v NullableFloat32) Get() *float32
func (NullableFloat32) IsSet ¶
func (v NullableFloat32) IsSet() bool
func (NullableFloat32) MarshalJSON ¶
func (v NullableFloat32) MarshalJSON() ([]byte, error)
func (*NullableFloat32) Set ¶
func (v *NullableFloat32) Set(val *float32)
func (*NullableFloat32) UnmarshalJSON ¶
func (v *NullableFloat32) UnmarshalJSON(src []byte) error
func (*NullableFloat32) Unset ¶
func (v *NullableFloat32) Unset()
type NullableFloat64 ¶
type NullableFloat64 struct {
// contains filtered or unexported fields
}
func NewNullableFloat64 ¶
func NewNullableFloat64(val *float64) *NullableFloat64
func (NullableFloat64) Get ¶
func (v NullableFloat64) Get() *float64
func (NullableFloat64) IsSet ¶
func (v NullableFloat64) IsSet() bool
func (NullableFloat64) MarshalJSON ¶
func (v NullableFloat64) MarshalJSON() ([]byte, error)
func (*NullableFloat64) Set ¶
func (v *NullableFloat64) Set(val *float64)
func (*NullableFloat64) UnmarshalJSON ¶
func (v *NullableFloat64) UnmarshalJSON(src []byte) error
func (*NullableFloat64) Unset ¶
func (v *NullableFloat64) Unset()
type NullableGetStakingContextRequest ¶
type NullableGetStakingContextRequest struct {
// contains filtered or unexported fields
}
func NewNullableGetStakingContextRequest ¶
func NewNullableGetStakingContextRequest(val *GetStakingContextRequest) *NullableGetStakingContextRequest
func (NullableGetStakingContextRequest) Get ¶
func (v NullableGetStakingContextRequest) Get() *GetStakingContextRequest
func (NullableGetStakingContextRequest) IsSet ¶
func (v NullableGetStakingContextRequest) IsSet() bool
func (NullableGetStakingContextRequest) MarshalJSON ¶
func (v NullableGetStakingContextRequest) MarshalJSON() ([]byte, error)
func (*NullableGetStakingContextRequest) Set ¶
func (v *NullableGetStakingContextRequest) Set(val *GetStakingContextRequest)
func (*NullableGetStakingContextRequest) UnmarshalJSON ¶
func (v *NullableGetStakingContextRequest) UnmarshalJSON(src []byte) error
func (*NullableGetStakingContextRequest) Unset ¶
func (v *NullableGetStakingContextRequest) Unset()
type NullableHistoricalBalance ¶
type NullableHistoricalBalance struct {
// contains filtered or unexported fields
}
func NewNullableHistoricalBalance ¶
func NewNullableHistoricalBalance(val *HistoricalBalance) *NullableHistoricalBalance
func (NullableHistoricalBalance) Get ¶
func (v NullableHistoricalBalance) Get() *HistoricalBalance
func (NullableHistoricalBalance) IsSet ¶
func (v NullableHistoricalBalance) IsSet() bool
func (NullableHistoricalBalance) MarshalJSON ¶
func (v NullableHistoricalBalance) MarshalJSON() ([]byte, error)
func (*NullableHistoricalBalance) Set ¶
func (v *NullableHistoricalBalance) Set(val *HistoricalBalance)
func (*NullableHistoricalBalance) UnmarshalJSON ¶
func (v *NullableHistoricalBalance) UnmarshalJSON(src []byte) error
func (*NullableHistoricalBalance) Unset ¶
func (v *NullableHistoricalBalance) Unset()
type NullableInt ¶
type NullableInt struct {
// contains filtered or unexported fields
}
func NewNullableInt ¶
func NewNullableInt(val *int) *NullableInt
func (NullableInt) Get ¶
func (v NullableInt) Get() *int
func (NullableInt) IsSet ¶
func (v NullableInt) IsSet() bool
func (NullableInt) MarshalJSON ¶
func (v NullableInt) MarshalJSON() ([]byte, error)
func (*NullableInt) Set ¶
func (v *NullableInt) Set(val *int)
func (*NullableInt) UnmarshalJSON ¶
func (v *NullableInt) UnmarshalJSON(src []byte) error
func (*NullableInt) Unset ¶
func (v *NullableInt) Unset()
type NullableInt32 ¶
type NullableInt32 struct {
// contains filtered or unexported fields
}
func NewNullableInt32 ¶
func NewNullableInt32(val *int32) *NullableInt32
func (NullableInt32) Get ¶
func (v NullableInt32) Get() *int32
func (NullableInt32) IsSet ¶
func (v NullableInt32) IsSet() bool
func (NullableInt32) MarshalJSON ¶
func (v NullableInt32) MarshalJSON() ([]byte, error)
func (*NullableInt32) Set ¶
func (v *NullableInt32) Set(val *int32)
func (*NullableInt32) UnmarshalJSON ¶
func (v *NullableInt32) UnmarshalJSON(src []byte) error
func (*NullableInt32) Unset ¶
func (v *NullableInt32) Unset()
type NullableInt64 ¶
type NullableInt64 struct {
// contains filtered or unexported fields
}
func NewNullableInt64 ¶
func NewNullableInt64(val *int64) *NullableInt64
func (NullableInt64) Get ¶
func (v NullableInt64) Get() *int64
func (NullableInt64) IsSet ¶
func (v NullableInt64) IsSet() bool
func (NullableInt64) MarshalJSON ¶
func (v NullableInt64) MarshalJSON() ([]byte, error)
func (*NullableInt64) Set ¶
func (v *NullableInt64) Set(val *int64)
func (*NullableInt64) UnmarshalJSON ¶
func (v *NullableInt64) UnmarshalJSON(src []byte) error
func (*NullableInt64) Unset ¶
func (v *NullableInt64) Unset()
type NullableNFTContractOptions ¶ added in v0.0.9
type NullableNFTContractOptions struct {
// contains filtered or unexported fields
}
func NewNullableNFTContractOptions ¶ added in v0.0.9
func NewNullableNFTContractOptions(val *NFTContractOptions) *NullableNFTContractOptions
func (NullableNFTContractOptions) Get ¶ added in v0.0.9
func (v NullableNFTContractOptions) Get() *NFTContractOptions
func (NullableNFTContractOptions) IsSet ¶ added in v0.0.9
func (v NullableNFTContractOptions) IsSet() bool
func (NullableNFTContractOptions) MarshalJSON ¶ added in v0.0.9
func (v NullableNFTContractOptions) MarshalJSON() ([]byte, error)
func (*NullableNFTContractOptions) Set ¶ added in v0.0.9
func (v *NullableNFTContractOptions) Set(val *NFTContractOptions)
func (*NullableNFTContractOptions) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableNFTContractOptions) UnmarshalJSON(src []byte) error
func (*NullableNFTContractOptions) Unset ¶ added in v0.0.9
func (v *NullableNFTContractOptions) Unset()
type NullableNetwork ¶
type NullableNetwork struct {
// contains filtered or unexported fields
}
func NewNullableNetwork ¶
func NewNullableNetwork(val *Network) *NullableNetwork
func (NullableNetwork) Get ¶
func (v NullableNetwork) Get() *Network
func (NullableNetwork) IsSet ¶
func (v NullableNetwork) IsSet() bool
func (NullableNetwork) MarshalJSON ¶
func (v NullableNetwork) MarshalJSON() ([]byte, error)
func (*NullableNetwork) Set ¶
func (v *NullableNetwork) Set(val *Network)
func (*NullableNetwork) UnmarshalJSON ¶
func (v *NullableNetwork) UnmarshalJSON(src []byte) error
func (*NullableNetwork) Unset ¶
func (v *NullableNetwork) Unset()
type NullableNetworkIdentifier ¶
type NullableNetworkIdentifier struct {
// contains filtered or unexported fields
}
func NewNullableNetworkIdentifier ¶
func NewNullableNetworkIdentifier(val *NetworkIdentifier) *NullableNetworkIdentifier
func (NullableNetworkIdentifier) Get ¶
func (v NullableNetworkIdentifier) Get() *NetworkIdentifier
func (NullableNetworkIdentifier) IsSet ¶
func (v NullableNetworkIdentifier) IsSet() bool
func (NullableNetworkIdentifier) MarshalJSON ¶
func (v NullableNetworkIdentifier) MarshalJSON() ([]byte, error)
func (*NullableNetworkIdentifier) Set ¶
func (v *NullableNetworkIdentifier) Set(val *NetworkIdentifier)
func (*NullableNetworkIdentifier) UnmarshalJSON ¶
func (v *NullableNetworkIdentifier) UnmarshalJSON(src []byte) error
func (*NullableNetworkIdentifier) Unset ¶
func (v *NullableNetworkIdentifier) Unset()
type NullablePayloadSignature ¶ added in v0.0.9
type NullablePayloadSignature struct {
// contains filtered or unexported fields
}
func NewNullablePayloadSignature ¶ added in v0.0.9
func NewNullablePayloadSignature(val *PayloadSignature) *NullablePayloadSignature
func (NullablePayloadSignature) Get ¶ added in v0.0.9
func (v NullablePayloadSignature) Get() *PayloadSignature
func (NullablePayloadSignature) IsSet ¶ added in v0.0.9
func (v NullablePayloadSignature) IsSet() bool
func (NullablePayloadSignature) MarshalJSON ¶ added in v0.0.9
func (v NullablePayloadSignature) MarshalJSON() ([]byte, error)
func (*NullablePayloadSignature) Set ¶ added in v0.0.9
func (v *NullablePayloadSignature) Set(val *PayloadSignature)
func (*NullablePayloadSignature) UnmarshalJSON ¶ added in v0.0.9
func (v *NullablePayloadSignature) UnmarshalJSON(src []byte) error
func (*NullablePayloadSignature) Unset ¶ added in v0.0.9
func (v *NullablePayloadSignature) Unset()
type NullablePayloadSignatureList ¶ added in v0.0.9
type NullablePayloadSignatureList struct {
// contains filtered or unexported fields
}
func NewNullablePayloadSignatureList ¶ added in v0.0.9
func NewNullablePayloadSignatureList(val *PayloadSignatureList) *NullablePayloadSignatureList
func (NullablePayloadSignatureList) Get ¶ added in v0.0.9
func (v NullablePayloadSignatureList) Get() *PayloadSignatureList
func (NullablePayloadSignatureList) IsSet ¶ added in v0.0.9
func (v NullablePayloadSignatureList) IsSet() bool
func (NullablePayloadSignatureList) MarshalJSON ¶ added in v0.0.9
func (v NullablePayloadSignatureList) MarshalJSON() ([]byte, error)
func (*NullablePayloadSignatureList) Set ¶ added in v0.0.9
func (v *NullablePayloadSignatureList) Set(val *PayloadSignatureList)
func (*NullablePayloadSignatureList) UnmarshalJSON ¶ added in v0.0.9
func (v *NullablePayloadSignatureList) UnmarshalJSON(src []byte) error
func (*NullablePayloadSignatureList) Unset ¶ added in v0.0.9
func (v *NullablePayloadSignatureList) Unset()
type NullableSeedCreationEvent ¶
type NullableSeedCreationEvent struct {
// contains filtered or unexported fields
}
func NewNullableSeedCreationEvent ¶
func NewNullableSeedCreationEvent(val *SeedCreationEvent) *NullableSeedCreationEvent
func (NullableSeedCreationEvent) Get ¶
func (v NullableSeedCreationEvent) Get() *SeedCreationEvent
func (NullableSeedCreationEvent) IsSet ¶
func (v NullableSeedCreationEvent) IsSet() bool
func (NullableSeedCreationEvent) MarshalJSON ¶
func (v NullableSeedCreationEvent) MarshalJSON() ([]byte, error)
func (*NullableSeedCreationEvent) Set ¶
func (v *NullableSeedCreationEvent) Set(val *SeedCreationEvent)
func (*NullableSeedCreationEvent) UnmarshalJSON ¶
func (v *NullableSeedCreationEvent) UnmarshalJSON(src []byte) error
func (*NullableSeedCreationEvent) Unset ¶
func (v *NullableSeedCreationEvent) Unset()
type NullableSeedCreationEventResult ¶
type NullableSeedCreationEventResult struct {
// contains filtered or unexported fields
}
func NewNullableSeedCreationEventResult ¶
func NewNullableSeedCreationEventResult(val *SeedCreationEventResult) *NullableSeedCreationEventResult
func (NullableSeedCreationEventResult) Get ¶
func (v NullableSeedCreationEventResult) Get() *SeedCreationEventResult
func (NullableSeedCreationEventResult) IsSet ¶
func (v NullableSeedCreationEventResult) IsSet() bool
func (NullableSeedCreationEventResult) MarshalJSON ¶
func (v NullableSeedCreationEventResult) MarshalJSON() ([]byte, error)
func (*NullableSeedCreationEventResult) Set ¶
func (v *NullableSeedCreationEventResult) Set(val *SeedCreationEventResult)
func (*NullableSeedCreationEventResult) UnmarshalJSON ¶
func (v *NullableSeedCreationEventResult) UnmarshalJSON(src []byte) error
func (*NullableSeedCreationEventResult) Unset ¶
func (v *NullableSeedCreationEventResult) Unset()
type NullableServerSigner ¶
type NullableServerSigner struct {
// contains filtered or unexported fields
}
func NewNullableServerSigner ¶
func NewNullableServerSigner(val *ServerSigner) *NullableServerSigner
func (NullableServerSigner) Get ¶
func (v NullableServerSigner) Get() *ServerSigner
func (NullableServerSigner) IsSet ¶
func (v NullableServerSigner) IsSet() bool
func (NullableServerSigner) MarshalJSON ¶
func (v NullableServerSigner) MarshalJSON() ([]byte, error)
func (*NullableServerSigner) Set ¶
func (v *NullableServerSigner) Set(val *ServerSigner)
func (*NullableServerSigner) UnmarshalJSON ¶
func (v *NullableServerSigner) UnmarshalJSON(src []byte) error
func (*NullableServerSigner) Unset ¶
func (v *NullableServerSigner) Unset()
type NullableServerSignerEvent ¶
type NullableServerSignerEvent struct {
// contains filtered or unexported fields
}
func NewNullableServerSignerEvent ¶
func NewNullableServerSignerEvent(val *ServerSignerEvent) *NullableServerSignerEvent
func (NullableServerSignerEvent) Get ¶
func (v NullableServerSignerEvent) Get() *ServerSignerEvent
func (NullableServerSignerEvent) IsSet ¶
func (v NullableServerSignerEvent) IsSet() bool
func (NullableServerSignerEvent) MarshalJSON ¶
func (v NullableServerSignerEvent) MarshalJSON() ([]byte, error)
func (*NullableServerSignerEvent) Set ¶
func (v *NullableServerSignerEvent) Set(val *ServerSignerEvent)
func (*NullableServerSignerEvent) UnmarshalJSON ¶
func (v *NullableServerSignerEvent) UnmarshalJSON(src []byte) error
func (*NullableServerSignerEvent) Unset ¶
func (v *NullableServerSignerEvent) Unset()
type NullableServerSignerEventEvent ¶
type NullableServerSignerEventEvent struct {
// contains filtered or unexported fields
}
func NewNullableServerSignerEventEvent ¶
func NewNullableServerSignerEventEvent(val *ServerSignerEventEvent) *NullableServerSignerEventEvent
func (NullableServerSignerEventEvent) Get ¶
func (v NullableServerSignerEventEvent) Get() *ServerSignerEventEvent
func (NullableServerSignerEventEvent) IsSet ¶
func (v NullableServerSignerEventEvent) IsSet() bool
func (NullableServerSignerEventEvent) MarshalJSON ¶
func (v NullableServerSignerEventEvent) MarshalJSON() ([]byte, error)
func (*NullableServerSignerEventEvent) Set ¶
func (v *NullableServerSignerEventEvent) Set(val *ServerSignerEventEvent)
func (*NullableServerSignerEventEvent) UnmarshalJSON ¶
func (v *NullableServerSignerEventEvent) UnmarshalJSON(src []byte) error
func (*NullableServerSignerEventEvent) Unset ¶
func (v *NullableServerSignerEventEvent) Unset()
type NullableServerSignerEventList ¶
type NullableServerSignerEventList struct {
// contains filtered or unexported fields
}
func NewNullableServerSignerEventList ¶
func NewNullableServerSignerEventList(val *ServerSignerEventList) *NullableServerSignerEventList
func (NullableServerSignerEventList) Get ¶
func (v NullableServerSignerEventList) Get() *ServerSignerEventList
func (NullableServerSignerEventList) IsSet ¶
func (v NullableServerSignerEventList) IsSet() bool
func (NullableServerSignerEventList) MarshalJSON ¶
func (v NullableServerSignerEventList) MarshalJSON() ([]byte, error)
func (*NullableServerSignerEventList) Set ¶
func (v *NullableServerSignerEventList) Set(val *ServerSignerEventList)
func (*NullableServerSignerEventList) UnmarshalJSON ¶
func (v *NullableServerSignerEventList) UnmarshalJSON(src []byte) error
func (*NullableServerSignerEventList) Unset ¶
func (v *NullableServerSignerEventList) Unset()
type NullableServerSignerList ¶
type NullableServerSignerList struct {
// contains filtered or unexported fields
}
func NewNullableServerSignerList ¶
func NewNullableServerSignerList(val *ServerSignerList) *NullableServerSignerList
func (NullableServerSignerList) Get ¶
func (v NullableServerSignerList) Get() *ServerSignerList
func (NullableServerSignerList) IsSet ¶
func (v NullableServerSignerList) IsSet() bool
func (NullableServerSignerList) MarshalJSON ¶
func (v NullableServerSignerList) MarshalJSON() ([]byte, error)
func (*NullableServerSignerList) Set ¶
func (v *NullableServerSignerList) Set(val *ServerSignerList)
func (*NullableServerSignerList) UnmarshalJSON ¶
func (v *NullableServerSignerList) UnmarshalJSON(src []byte) error
func (*NullableServerSignerList) Unset ¶
func (v *NullableServerSignerList) Unset()
type NullableSignatureCreationEvent ¶
type NullableSignatureCreationEvent struct {
// contains filtered or unexported fields
}
func NewNullableSignatureCreationEvent ¶
func NewNullableSignatureCreationEvent(val *SignatureCreationEvent) *NullableSignatureCreationEvent
func (NullableSignatureCreationEvent) Get ¶
func (v NullableSignatureCreationEvent) Get() *SignatureCreationEvent
func (NullableSignatureCreationEvent) IsSet ¶
func (v NullableSignatureCreationEvent) IsSet() bool
func (NullableSignatureCreationEvent) MarshalJSON ¶
func (v NullableSignatureCreationEvent) MarshalJSON() ([]byte, error)
func (*NullableSignatureCreationEvent) Set ¶
func (v *NullableSignatureCreationEvent) Set(val *SignatureCreationEvent)
func (*NullableSignatureCreationEvent) UnmarshalJSON ¶
func (v *NullableSignatureCreationEvent) UnmarshalJSON(src []byte) error
func (*NullableSignatureCreationEvent) Unset ¶
func (v *NullableSignatureCreationEvent) Unset()
type NullableSignatureCreationEventResult ¶
type NullableSignatureCreationEventResult struct {
// contains filtered or unexported fields
}
func NewNullableSignatureCreationEventResult ¶
func NewNullableSignatureCreationEventResult(val *SignatureCreationEventResult) *NullableSignatureCreationEventResult
func (NullableSignatureCreationEventResult) Get ¶
func (v NullableSignatureCreationEventResult) Get() *SignatureCreationEventResult
func (NullableSignatureCreationEventResult) IsSet ¶
func (v NullableSignatureCreationEventResult) IsSet() bool
func (NullableSignatureCreationEventResult) MarshalJSON ¶
func (v NullableSignatureCreationEventResult) MarshalJSON() ([]byte, error)
func (*NullableSignatureCreationEventResult) Set ¶
func (v *NullableSignatureCreationEventResult) Set(val *SignatureCreationEventResult)
func (*NullableSignatureCreationEventResult) UnmarshalJSON ¶
func (v *NullableSignatureCreationEventResult) UnmarshalJSON(src []byte) error
func (*NullableSignatureCreationEventResult) Unset ¶
func (v *NullableSignatureCreationEventResult) Unset()
type NullableSignedVoluntaryExitMessageMetadata ¶
type NullableSignedVoluntaryExitMessageMetadata struct {
// contains filtered or unexported fields
}
func NewNullableSignedVoluntaryExitMessageMetadata ¶
func NewNullableSignedVoluntaryExitMessageMetadata(val *SignedVoluntaryExitMessageMetadata) *NullableSignedVoluntaryExitMessageMetadata
func (NullableSignedVoluntaryExitMessageMetadata) IsSet ¶
func (v NullableSignedVoluntaryExitMessageMetadata) IsSet() bool
func (NullableSignedVoluntaryExitMessageMetadata) MarshalJSON ¶
func (v NullableSignedVoluntaryExitMessageMetadata) MarshalJSON() ([]byte, error)
func (*NullableSignedVoluntaryExitMessageMetadata) Set ¶
func (v *NullableSignedVoluntaryExitMessageMetadata) Set(val *SignedVoluntaryExitMessageMetadata)
func (*NullableSignedVoluntaryExitMessageMetadata) UnmarshalJSON ¶
func (v *NullableSignedVoluntaryExitMessageMetadata) UnmarshalJSON(src []byte) error
func (*NullableSignedVoluntaryExitMessageMetadata) Unset ¶
func (v *NullableSignedVoluntaryExitMessageMetadata) Unset()
type NullableSmartContract ¶ added in v0.0.9
type NullableSmartContract struct {
// contains filtered or unexported fields
}
func NewNullableSmartContract ¶ added in v0.0.9
func NewNullableSmartContract(val *SmartContract) *NullableSmartContract
func (NullableSmartContract) Get ¶ added in v0.0.9
func (v NullableSmartContract) Get() *SmartContract
func (NullableSmartContract) IsSet ¶ added in v0.0.9
func (v NullableSmartContract) IsSet() bool
func (NullableSmartContract) MarshalJSON ¶ added in v0.0.9
func (v NullableSmartContract) MarshalJSON() ([]byte, error)
func (*NullableSmartContract) Set ¶ added in v0.0.9
func (v *NullableSmartContract) Set(val *SmartContract)
func (*NullableSmartContract) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableSmartContract) UnmarshalJSON(src []byte) error
func (*NullableSmartContract) Unset ¶ added in v0.0.9
func (v *NullableSmartContract) Unset()
type NullableSmartContractList ¶ added in v0.0.9
type NullableSmartContractList struct {
// contains filtered or unexported fields
}
func NewNullableSmartContractList ¶ added in v0.0.9
func NewNullableSmartContractList(val *SmartContractList) *NullableSmartContractList
func (NullableSmartContractList) Get ¶ added in v0.0.9
func (v NullableSmartContractList) Get() *SmartContractList
func (NullableSmartContractList) IsSet ¶ added in v0.0.9
func (v NullableSmartContractList) IsSet() bool
func (NullableSmartContractList) MarshalJSON ¶ added in v0.0.9
func (v NullableSmartContractList) MarshalJSON() ([]byte, error)
func (*NullableSmartContractList) Set ¶ added in v0.0.9
func (v *NullableSmartContractList) Set(val *SmartContractList)
func (*NullableSmartContractList) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableSmartContractList) UnmarshalJSON(src []byte) error
func (*NullableSmartContractList) Unset ¶ added in v0.0.9
func (v *NullableSmartContractList) Unset()
type NullableSmartContractOptions ¶ added in v0.0.9
type NullableSmartContractOptions struct {
// contains filtered or unexported fields
}
func NewNullableSmartContractOptions ¶ added in v0.0.9
func NewNullableSmartContractOptions(val *SmartContractOptions) *NullableSmartContractOptions
func (NullableSmartContractOptions) Get ¶ added in v0.0.9
func (v NullableSmartContractOptions) Get() *SmartContractOptions
func (NullableSmartContractOptions) IsSet ¶ added in v0.0.9
func (v NullableSmartContractOptions) IsSet() bool
func (NullableSmartContractOptions) MarshalJSON ¶ added in v0.0.9
func (v NullableSmartContractOptions) MarshalJSON() ([]byte, error)
func (*NullableSmartContractOptions) Set ¶ added in v0.0.9
func (v *NullableSmartContractOptions) Set(val *SmartContractOptions)
func (*NullableSmartContractOptions) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableSmartContractOptions) UnmarshalJSON(src []byte) error
func (*NullableSmartContractOptions) Unset ¶ added in v0.0.9
func (v *NullableSmartContractOptions) Unset()
type NullableSmartContractType ¶ added in v0.0.9
type NullableSmartContractType struct {
// contains filtered or unexported fields
}
func NewNullableSmartContractType ¶ added in v0.0.9
func NewNullableSmartContractType(val *SmartContractType) *NullableSmartContractType
func (NullableSmartContractType) Get ¶ added in v0.0.9
func (v NullableSmartContractType) Get() *SmartContractType
func (NullableSmartContractType) IsSet ¶ added in v0.0.9
func (v NullableSmartContractType) IsSet() bool
func (NullableSmartContractType) MarshalJSON ¶ added in v0.0.9
func (v NullableSmartContractType) MarshalJSON() ([]byte, error)
func (*NullableSmartContractType) Set ¶ added in v0.0.9
func (v *NullableSmartContractType) Set(val *SmartContractType)
func (*NullableSmartContractType) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableSmartContractType) UnmarshalJSON(src []byte) error
func (*NullableSmartContractType) Unset ¶ added in v0.0.9
func (v *NullableSmartContractType) Unset()
type NullableSponsoredSend ¶
type NullableSponsoredSend struct {
// contains filtered or unexported fields
}
func NewNullableSponsoredSend ¶
func NewNullableSponsoredSend(val *SponsoredSend) *NullableSponsoredSend
func (NullableSponsoredSend) Get ¶
func (v NullableSponsoredSend) Get() *SponsoredSend
func (NullableSponsoredSend) IsSet ¶
func (v NullableSponsoredSend) IsSet() bool
func (NullableSponsoredSend) MarshalJSON ¶
func (v NullableSponsoredSend) MarshalJSON() ([]byte, error)
func (*NullableSponsoredSend) Set ¶
func (v *NullableSponsoredSend) Set(val *SponsoredSend)
func (*NullableSponsoredSend) UnmarshalJSON ¶
func (v *NullableSponsoredSend) UnmarshalJSON(src []byte) error
func (*NullableSponsoredSend) Unset ¶
func (v *NullableSponsoredSend) Unset()
type NullableStakingBalance ¶
type NullableStakingBalance struct {
// contains filtered or unexported fields
}
func NewNullableStakingBalance ¶
func NewNullableStakingBalance(val *StakingBalance) *NullableStakingBalance
func (NullableStakingBalance) Get ¶
func (v NullableStakingBalance) Get() *StakingBalance
func (NullableStakingBalance) IsSet ¶
func (v NullableStakingBalance) IsSet() bool
func (NullableStakingBalance) MarshalJSON ¶
func (v NullableStakingBalance) MarshalJSON() ([]byte, error)
func (*NullableStakingBalance) Set ¶
func (v *NullableStakingBalance) Set(val *StakingBalance)
func (*NullableStakingBalance) UnmarshalJSON ¶
func (v *NullableStakingBalance) UnmarshalJSON(src []byte) error
func (*NullableStakingBalance) Unset ¶
func (v *NullableStakingBalance) Unset()
type NullableStakingContext ¶
type NullableStakingContext struct {
// contains filtered or unexported fields
}
func NewNullableStakingContext ¶
func NewNullableStakingContext(val *StakingContext) *NullableStakingContext
func (NullableStakingContext) Get ¶
func (v NullableStakingContext) Get() *StakingContext
func (NullableStakingContext) IsSet ¶
func (v NullableStakingContext) IsSet() bool
func (NullableStakingContext) MarshalJSON ¶
func (v NullableStakingContext) MarshalJSON() ([]byte, error)
func (*NullableStakingContext) Set ¶
func (v *NullableStakingContext) Set(val *StakingContext)
func (*NullableStakingContext) UnmarshalJSON ¶
func (v *NullableStakingContext) UnmarshalJSON(src []byte) error
func (*NullableStakingContext) Unset ¶
func (v *NullableStakingContext) Unset()
type NullableStakingContextContext ¶
type NullableStakingContextContext struct {
// contains filtered or unexported fields
}
func NewNullableStakingContextContext ¶
func NewNullableStakingContextContext(val *StakingContextContext) *NullableStakingContextContext
func (NullableStakingContextContext) Get ¶
func (v NullableStakingContextContext) Get() *StakingContextContext
func (NullableStakingContextContext) IsSet ¶
func (v NullableStakingContextContext) IsSet() bool
func (NullableStakingContextContext) MarshalJSON ¶
func (v NullableStakingContextContext) MarshalJSON() ([]byte, error)
func (*NullableStakingContextContext) Set ¶
func (v *NullableStakingContextContext) Set(val *StakingContextContext)
func (*NullableStakingContextContext) UnmarshalJSON ¶
func (v *NullableStakingContextContext) UnmarshalJSON(src []byte) error
func (*NullableStakingContextContext) Unset ¶
func (v *NullableStakingContextContext) Unset()
type NullableStakingOperation ¶
type NullableStakingOperation struct {
// contains filtered or unexported fields
}
func NewNullableStakingOperation ¶
func NewNullableStakingOperation(val *StakingOperation) *NullableStakingOperation
func (NullableStakingOperation) Get ¶
func (v NullableStakingOperation) Get() *StakingOperation
func (NullableStakingOperation) IsSet ¶
func (v NullableStakingOperation) IsSet() bool
func (NullableStakingOperation) MarshalJSON ¶
func (v NullableStakingOperation) MarshalJSON() ([]byte, error)
func (*NullableStakingOperation) Set ¶
func (v *NullableStakingOperation) Set(val *StakingOperation)
func (*NullableStakingOperation) UnmarshalJSON ¶
func (v *NullableStakingOperation) UnmarshalJSON(src []byte) error
func (*NullableStakingOperation) Unset ¶
func (v *NullableStakingOperation) Unset()
type NullableStakingOperationMetadata ¶
type NullableStakingOperationMetadata struct {
// contains filtered or unexported fields
}
func NewNullableStakingOperationMetadata ¶
func NewNullableStakingOperationMetadata(val *StakingOperationMetadata) *NullableStakingOperationMetadata
func (NullableStakingOperationMetadata) Get ¶
func (v NullableStakingOperationMetadata) Get() *StakingOperationMetadata
func (NullableStakingOperationMetadata) IsSet ¶
func (v NullableStakingOperationMetadata) IsSet() bool
func (NullableStakingOperationMetadata) MarshalJSON ¶
func (v NullableStakingOperationMetadata) MarshalJSON() ([]byte, error)
func (*NullableStakingOperationMetadata) Set ¶
func (v *NullableStakingOperationMetadata) Set(val *StakingOperationMetadata)
func (*NullableStakingOperationMetadata) UnmarshalJSON ¶
func (v *NullableStakingOperationMetadata) UnmarshalJSON(src []byte) error
func (*NullableStakingOperationMetadata) Unset ¶
func (v *NullableStakingOperationMetadata) Unset()
type NullableStakingReward ¶
type NullableStakingReward struct {
// contains filtered or unexported fields
}
func NewNullableStakingReward ¶
func NewNullableStakingReward(val *StakingReward) *NullableStakingReward
func (NullableStakingReward) Get ¶
func (v NullableStakingReward) Get() *StakingReward
func (NullableStakingReward) IsSet ¶
func (v NullableStakingReward) IsSet() bool
func (NullableStakingReward) MarshalJSON ¶
func (v NullableStakingReward) MarshalJSON() ([]byte, error)
func (*NullableStakingReward) Set ¶
func (v *NullableStakingReward) Set(val *StakingReward)
func (*NullableStakingReward) UnmarshalJSON ¶
func (v *NullableStakingReward) UnmarshalJSON(src []byte) error
func (*NullableStakingReward) Unset ¶
func (v *NullableStakingReward) Unset()
type NullableStakingRewardFormat ¶
type NullableStakingRewardFormat struct {
// contains filtered or unexported fields
}
func NewNullableStakingRewardFormat ¶
func NewNullableStakingRewardFormat(val *StakingRewardFormat) *NullableStakingRewardFormat
func (NullableStakingRewardFormat) Get ¶
func (v NullableStakingRewardFormat) Get() *StakingRewardFormat
func (NullableStakingRewardFormat) IsSet ¶
func (v NullableStakingRewardFormat) IsSet() bool
func (NullableStakingRewardFormat) MarshalJSON ¶
func (v NullableStakingRewardFormat) MarshalJSON() ([]byte, error)
func (*NullableStakingRewardFormat) Set ¶
func (v *NullableStakingRewardFormat) Set(val *StakingRewardFormat)
func (*NullableStakingRewardFormat) UnmarshalJSON ¶
func (v *NullableStakingRewardFormat) UnmarshalJSON(src []byte) error
func (*NullableStakingRewardFormat) Unset ¶
func (v *NullableStakingRewardFormat) Unset()
type NullableStakingRewardUSDValue ¶
type NullableStakingRewardUSDValue struct {
// contains filtered or unexported fields
}
func NewNullableStakingRewardUSDValue ¶
func NewNullableStakingRewardUSDValue(val *StakingRewardUSDValue) *NullableStakingRewardUSDValue
func (NullableStakingRewardUSDValue) Get ¶
func (v NullableStakingRewardUSDValue) Get() *StakingRewardUSDValue
func (NullableStakingRewardUSDValue) IsSet ¶
func (v NullableStakingRewardUSDValue) IsSet() bool
func (NullableStakingRewardUSDValue) MarshalJSON ¶
func (v NullableStakingRewardUSDValue) MarshalJSON() ([]byte, error)
func (*NullableStakingRewardUSDValue) Set ¶
func (v *NullableStakingRewardUSDValue) Set(val *StakingRewardUSDValue)
func (*NullableStakingRewardUSDValue) UnmarshalJSON ¶
func (v *NullableStakingRewardUSDValue) UnmarshalJSON(src []byte) error
func (*NullableStakingRewardUSDValue) Unset ¶
func (v *NullableStakingRewardUSDValue) Unset()
type NullableString ¶
type NullableString struct {
// contains filtered or unexported fields
}
func NewNullableString ¶
func NewNullableString(val *string) *NullableString
func (NullableString) Get ¶
func (v NullableString) Get() *string
func (NullableString) IsSet ¶
func (v NullableString) IsSet() bool
func (NullableString) MarshalJSON ¶
func (v NullableString) MarshalJSON() ([]byte, error)
func (*NullableString) Set ¶
func (v *NullableString) Set(val *string)
func (*NullableString) UnmarshalJSON ¶
func (v *NullableString) UnmarshalJSON(src []byte) error
func (*NullableString) Unset ¶
func (v *NullableString) Unset()
type NullableTime ¶
type NullableTime struct {
// contains filtered or unexported fields
}
func NewNullableTime ¶
func NewNullableTime(val *time.Time) *NullableTime
func (NullableTime) Get ¶
func (v NullableTime) Get() *time.Time
func (NullableTime) IsSet ¶
func (v NullableTime) IsSet() bool
func (NullableTime) MarshalJSON ¶
func (v NullableTime) MarshalJSON() ([]byte, error)
func (*NullableTime) Set ¶
func (v *NullableTime) Set(val *time.Time)
func (*NullableTime) UnmarshalJSON ¶
func (v *NullableTime) UnmarshalJSON(src []byte) error
func (*NullableTime) Unset ¶
func (v *NullableTime) Unset()
type NullableTokenContractOptions ¶ added in v0.0.9
type NullableTokenContractOptions struct {
// contains filtered or unexported fields
}
func NewNullableTokenContractOptions ¶ added in v0.0.9
func NewNullableTokenContractOptions(val *TokenContractOptions) *NullableTokenContractOptions
func (NullableTokenContractOptions) Get ¶ added in v0.0.9
func (v NullableTokenContractOptions) Get() *TokenContractOptions
func (NullableTokenContractOptions) IsSet ¶ added in v0.0.9
func (v NullableTokenContractOptions) IsSet() bool
func (NullableTokenContractOptions) MarshalJSON ¶ added in v0.0.9
func (v NullableTokenContractOptions) MarshalJSON() ([]byte, error)
func (*NullableTokenContractOptions) Set ¶ added in v0.0.9
func (v *NullableTokenContractOptions) Set(val *TokenContractOptions)
func (*NullableTokenContractOptions) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableTokenContractOptions) UnmarshalJSON(src []byte) error
func (*NullableTokenContractOptions) Unset ¶ added in v0.0.9
func (v *NullableTokenContractOptions) Unset()
type NullableTrade ¶
type NullableTrade struct {
// contains filtered or unexported fields
}
func NewNullableTrade ¶
func NewNullableTrade(val *Trade) *NullableTrade
func (NullableTrade) Get ¶
func (v NullableTrade) Get() *Trade
func (NullableTrade) IsSet ¶
func (v NullableTrade) IsSet() bool
func (NullableTrade) MarshalJSON ¶
func (v NullableTrade) MarshalJSON() ([]byte, error)
func (*NullableTrade) Set ¶
func (v *NullableTrade) Set(val *Trade)
func (*NullableTrade) UnmarshalJSON ¶
func (v *NullableTrade) UnmarshalJSON(src []byte) error
func (*NullableTrade) Unset ¶
func (v *NullableTrade) Unset()
type NullableTradeList ¶
type NullableTradeList struct {
// contains filtered or unexported fields
}
func NewNullableTradeList ¶
func NewNullableTradeList(val *TradeList) *NullableTradeList
func (NullableTradeList) Get ¶
func (v NullableTradeList) Get() *TradeList
func (NullableTradeList) IsSet ¶
func (v NullableTradeList) IsSet() bool
func (NullableTradeList) MarshalJSON ¶
func (v NullableTradeList) MarshalJSON() ([]byte, error)
func (*NullableTradeList) Set ¶
func (v *NullableTradeList) Set(val *TradeList)
func (*NullableTradeList) UnmarshalJSON ¶
func (v *NullableTradeList) UnmarshalJSON(src []byte) error
func (*NullableTradeList) Unset ¶
func (v *NullableTradeList) Unset()
type NullableTransaction ¶
type NullableTransaction struct {
// contains filtered or unexported fields
}
func NewNullableTransaction ¶
func NewNullableTransaction(val *Transaction) *NullableTransaction
func (NullableTransaction) Get ¶
func (v NullableTransaction) Get() *Transaction
func (NullableTransaction) IsSet ¶
func (v NullableTransaction) IsSet() bool
func (NullableTransaction) MarshalJSON ¶
func (v NullableTransaction) MarshalJSON() ([]byte, error)
func (*NullableTransaction) Set ¶
func (v *NullableTransaction) Set(val *Transaction)
func (*NullableTransaction) UnmarshalJSON ¶
func (v *NullableTransaction) UnmarshalJSON(src []byte) error
func (*NullableTransaction) Unset ¶
func (v *NullableTransaction) Unset()
type NullableTransactionContent ¶ added in v0.0.9
type NullableTransactionContent struct {
// contains filtered or unexported fields
}
func NewNullableTransactionContent ¶ added in v0.0.9
func NewNullableTransactionContent(val *TransactionContent) *NullableTransactionContent
func (NullableTransactionContent) Get ¶ added in v0.0.9
func (v NullableTransactionContent) Get() *TransactionContent
func (NullableTransactionContent) IsSet ¶ added in v0.0.9
func (v NullableTransactionContent) IsSet() bool
func (NullableTransactionContent) MarshalJSON ¶ added in v0.0.9
func (v NullableTransactionContent) MarshalJSON() ([]byte, error)
func (*NullableTransactionContent) Set ¶ added in v0.0.9
func (v *NullableTransactionContent) Set(val *TransactionContent)
func (*NullableTransactionContent) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableTransactionContent) UnmarshalJSON(src []byte) error
func (*NullableTransactionContent) Unset ¶ added in v0.0.9
func (v *NullableTransactionContent) Unset()
type NullableTransactionType ¶
type NullableTransactionType struct {
// contains filtered or unexported fields
}
func NewNullableTransactionType ¶
func NewNullableTransactionType(val *TransactionType) *NullableTransactionType
func (NullableTransactionType) Get ¶
func (v NullableTransactionType) Get() *TransactionType
func (NullableTransactionType) IsSet ¶
func (v NullableTransactionType) IsSet() bool
func (NullableTransactionType) MarshalJSON ¶
func (v NullableTransactionType) MarshalJSON() ([]byte, error)
func (*NullableTransactionType) Set ¶
func (v *NullableTransactionType) Set(val *TransactionType)
func (*NullableTransactionType) UnmarshalJSON ¶
func (v *NullableTransactionType) UnmarshalJSON(src []byte) error
func (*NullableTransactionType) Unset ¶
func (v *NullableTransactionType) Unset()
type NullableTransfer ¶
type NullableTransfer struct {
// contains filtered or unexported fields
}
func NewNullableTransfer ¶
func NewNullableTransfer(val *Transfer) *NullableTransfer
func (NullableTransfer) Get ¶
func (v NullableTransfer) Get() *Transfer
func (NullableTransfer) IsSet ¶
func (v NullableTransfer) IsSet() bool
func (NullableTransfer) MarshalJSON ¶
func (v NullableTransfer) MarshalJSON() ([]byte, error)
func (*NullableTransfer) Set ¶
func (v *NullableTransfer) Set(val *Transfer)
func (*NullableTransfer) UnmarshalJSON ¶
func (v *NullableTransfer) UnmarshalJSON(src []byte) error
func (*NullableTransfer) Unset ¶
func (v *NullableTransfer) Unset()
type NullableTransferList ¶
type NullableTransferList struct {
// contains filtered or unexported fields
}
func NewNullableTransferList ¶
func NewNullableTransferList(val *TransferList) *NullableTransferList
func (NullableTransferList) Get ¶
func (v NullableTransferList) Get() *TransferList
func (NullableTransferList) IsSet ¶
func (v NullableTransferList) IsSet() bool
func (NullableTransferList) MarshalJSON ¶
func (v NullableTransferList) MarshalJSON() ([]byte, error)
func (*NullableTransferList) Set ¶
func (v *NullableTransferList) Set(val *TransferList)
func (*NullableTransferList) UnmarshalJSON ¶
func (v *NullableTransferList) UnmarshalJSON(src []byte) error
func (*NullableTransferList) Unset ¶
func (v *NullableTransferList) Unset()
type NullableUpdateWebhookRequest ¶
type NullableUpdateWebhookRequest struct {
// contains filtered or unexported fields
}
func NewNullableUpdateWebhookRequest ¶
func NewNullableUpdateWebhookRequest(val *UpdateWebhookRequest) *NullableUpdateWebhookRequest
func (NullableUpdateWebhookRequest) Get ¶
func (v NullableUpdateWebhookRequest) Get() *UpdateWebhookRequest
func (NullableUpdateWebhookRequest) IsSet ¶
func (v NullableUpdateWebhookRequest) IsSet() bool
func (NullableUpdateWebhookRequest) MarshalJSON ¶
func (v NullableUpdateWebhookRequest) MarshalJSON() ([]byte, error)
func (*NullableUpdateWebhookRequest) Set ¶
func (v *NullableUpdateWebhookRequest) Set(val *UpdateWebhookRequest)
func (*NullableUpdateWebhookRequest) UnmarshalJSON ¶
func (v *NullableUpdateWebhookRequest) UnmarshalJSON(src []byte) error
func (*NullableUpdateWebhookRequest) Unset ¶
func (v *NullableUpdateWebhookRequest) Unset()
type NullableUser ¶
type NullableUser struct {
// contains filtered or unexported fields
}
func NewNullableUser ¶
func NewNullableUser(val *User) *NullableUser
func (NullableUser) Get ¶
func (v NullableUser) Get() *User
func (NullableUser) IsSet ¶
func (v NullableUser) IsSet() bool
func (NullableUser) MarshalJSON ¶
func (v NullableUser) MarshalJSON() ([]byte, error)
func (*NullableUser) Set ¶
func (v *NullableUser) Set(val *User)
func (*NullableUser) UnmarshalJSON ¶
func (v *NullableUser) UnmarshalJSON(src []byte) error
func (*NullableUser) Unset ¶
func (v *NullableUser) Unset()
type NullableValidator ¶
type NullableValidator struct {
// contains filtered or unexported fields
}
func NewNullableValidator ¶
func NewNullableValidator(val *Validator) *NullableValidator
func (NullableValidator) Get ¶
func (v NullableValidator) Get() *Validator
func (NullableValidator) IsSet ¶
func (v NullableValidator) IsSet() bool
func (NullableValidator) MarshalJSON ¶
func (v NullableValidator) MarshalJSON() ([]byte, error)
func (*NullableValidator) Set ¶
func (v *NullableValidator) Set(val *Validator)
func (*NullableValidator) UnmarshalJSON ¶
func (v *NullableValidator) UnmarshalJSON(src []byte) error
func (*NullableValidator) Unset ¶
func (v *NullableValidator) Unset()
type NullableValidatorDetails ¶
type NullableValidatorDetails struct {
// contains filtered or unexported fields
}
func NewNullableValidatorDetails ¶
func NewNullableValidatorDetails(val *ValidatorDetails) *NullableValidatorDetails
func (NullableValidatorDetails) Get ¶
func (v NullableValidatorDetails) Get() *ValidatorDetails
func (NullableValidatorDetails) IsSet ¶
func (v NullableValidatorDetails) IsSet() bool
func (NullableValidatorDetails) MarshalJSON ¶
func (v NullableValidatorDetails) MarshalJSON() ([]byte, error)
func (*NullableValidatorDetails) Set ¶
func (v *NullableValidatorDetails) Set(val *ValidatorDetails)
func (*NullableValidatorDetails) UnmarshalJSON ¶
func (v *NullableValidatorDetails) UnmarshalJSON(src []byte) error
func (*NullableValidatorDetails) Unset ¶
func (v *NullableValidatorDetails) Unset()
type NullableValidatorList ¶
type NullableValidatorList struct {
// contains filtered or unexported fields
}
func NewNullableValidatorList ¶
func NewNullableValidatorList(val *ValidatorList) *NullableValidatorList
func (NullableValidatorList) Get ¶
func (v NullableValidatorList) Get() *ValidatorList
func (NullableValidatorList) IsSet ¶
func (v NullableValidatorList) IsSet() bool
func (NullableValidatorList) MarshalJSON ¶
func (v NullableValidatorList) MarshalJSON() ([]byte, error)
func (*NullableValidatorList) Set ¶
func (v *NullableValidatorList) Set(val *ValidatorList)
func (*NullableValidatorList) UnmarshalJSON ¶
func (v *NullableValidatorList) UnmarshalJSON(src []byte) error
func (*NullableValidatorList) Unset ¶
func (v *NullableValidatorList) Unset()
type NullableValidatorStatus ¶
type NullableValidatorStatus struct {
// contains filtered or unexported fields
}
func NewNullableValidatorStatus ¶
func NewNullableValidatorStatus(val *ValidatorStatus) *NullableValidatorStatus
func (NullableValidatorStatus) Get ¶
func (v NullableValidatorStatus) Get() *ValidatorStatus
func (NullableValidatorStatus) IsSet ¶
func (v NullableValidatorStatus) IsSet() bool
func (NullableValidatorStatus) MarshalJSON ¶
func (v NullableValidatorStatus) MarshalJSON() ([]byte, error)
func (*NullableValidatorStatus) Set ¶
func (v *NullableValidatorStatus) Set(val *ValidatorStatus)
func (*NullableValidatorStatus) UnmarshalJSON ¶
func (v *NullableValidatorStatus) UnmarshalJSON(src []byte) error
func (*NullableValidatorStatus) Unset ¶
func (v *NullableValidatorStatus) Unset()
type NullableWallet ¶
type NullableWallet struct {
// contains filtered or unexported fields
}
func NewNullableWallet ¶
func NewNullableWallet(val *Wallet) *NullableWallet
func (NullableWallet) Get ¶
func (v NullableWallet) Get() *Wallet
func (NullableWallet) IsSet ¶
func (v NullableWallet) IsSet() bool
func (NullableWallet) MarshalJSON ¶
func (v NullableWallet) MarshalJSON() ([]byte, error)
func (*NullableWallet) Set ¶
func (v *NullableWallet) Set(val *Wallet)
func (*NullableWallet) UnmarshalJSON ¶
func (v *NullableWallet) UnmarshalJSON(src []byte) error
func (*NullableWallet) Unset ¶
func (v *NullableWallet) Unset()
type NullableWalletList ¶
type NullableWalletList struct {
// contains filtered or unexported fields
}
func NewNullableWalletList ¶
func NewNullableWalletList(val *WalletList) *NullableWalletList
func (NullableWalletList) Get ¶
func (v NullableWalletList) Get() *WalletList
func (NullableWalletList) IsSet ¶
func (v NullableWalletList) IsSet() bool
func (NullableWalletList) MarshalJSON ¶
func (v NullableWalletList) MarshalJSON() ([]byte, error)
func (*NullableWalletList) Set ¶
func (v *NullableWalletList) Set(val *WalletList)
func (*NullableWalletList) UnmarshalJSON ¶
func (v *NullableWalletList) UnmarshalJSON(src []byte) error
func (*NullableWalletList) Unset ¶
func (v *NullableWalletList) Unset()
type NullableWebhook ¶
type NullableWebhook struct {
// contains filtered or unexported fields
}
func NewNullableWebhook ¶
func NewNullableWebhook(val *Webhook) *NullableWebhook
func (NullableWebhook) Get ¶
func (v NullableWebhook) Get() *Webhook
func (NullableWebhook) IsSet ¶
func (v NullableWebhook) IsSet() bool
func (NullableWebhook) MarshalJSON ¶
func (v NullableWebhook) MarshalJSON() ([]byte, error)
func (*NullableWebhook) Set ¶
func (v *NullableWebhook) Set(val *Webhook)
func (*NullableWebhook) UnmarshalJSON ¶
func (v *NullableWebhook) UnmarshalJSON(src []byte) error
func (*NullableWebhook) Unset ¶
func (v *NullableWebhook) Unset()
type NullableWebhookEventFilter ¶
type NullableWebhookEventFilter struct {
// contains filtered or unexported fields
}
func NewNullableWebhookEventFilter ¶
func NewNullableWebhookEventFilter(val *WebhookEventFilter) *NullableWebhookEventFilter
func (NullableWebhookEventFilter) Get ¶
func (v NullableWebhookEventFilter) Get() *WebhookEventFilter
func (NullableWebhookEventFilter) IsSet ¶
func (v NullableWebhookEventFilter) IsSet() bool
func (NullableWebhookEventFilter) MarshalJSON ¶
func (v NullableWebhookEventFilter) MarshalJSON() ([]byte, error)
func (*NullableWebhookEventFilter) Set ¶
func (v *NullableWebhookEventFilter) Set(val *WebhookEventFilter)
func (*NullableWebhookEventFilter) UnmarshalJSON ¶
func (v *NullableWebhookEventFilter) UnmarshalJSON(src []byte) error
func (*NullableWebhookEventFilter) Unset ¶
func (v *NullableWebhookEventFilter) Unset()
type NullableWebhookEventType ¶
type NullableWebhookEventType struct {
// contains filtered or unexported fields
}
func NewNullableWebhookEventType ¶
func NewNullableWebhookEventType(val *WebhookEventType) *NullableWebhookEventType
func (NullableWebhookEventType) Get ¶
func (v NullableWebhookEventType) Get() *WebhookEventType
func (NullableWebhookEventType) IsSet ¶
func (v NullableWebhookEventType) IsSet() bool
func (NullableWebhookEventType) MarshalJSON ¶
func (v NullableWebhookEventType) MarshalJSON() ([]byte, error)
func (*NullableWebhookEventType) Set ¶
func (v *NullableWebhookEventType) Set(val *WebhookEventType)
func (*NullableWebhookEventType) UnmarshalJSON ¶
func (v *NullableWebhookEventType) UnmarshalJSON(src []byte) error
func (*NullableWebhookEventType) Unset ¶
func (v *NullableWebhookEventType) Unset()
type NullableWebhookEventTypeFilter ¶ added in v0.0.9
type NullableWebhookEventTypeFilter struct {
// contains filtered or unexported fields
}
func NewNullableWebhookEventTypeFilter ¶ added in v0.0.9
func NewNullableWebhookEventTypeFilter(val *WebhookEventTypeFilter) *NullableWebhookEventTypeFilter
func (NullableWebhookEventTypeFilter) Get ¶ added in v0.0.9
func (v NullableWebhookEventTypeFilter) Get() *WebhookEventTypeFilter
func (NullableWebhookEventTypeFilter) IsSet ¶ added in v0.0.9
func (v NullableWebhookEventTypeFilter) IsSet() bool
func (NullableWebhookEventTypeFilter) MarshalJSON ¶ added in v0.0.9
func (v NullableWebhookEventTypeFilter) MarshalJSON() ([]byte, error)
func (*NullableWebhookEventTypeFilter) Set ¶ added in v0.0.9
func (v *NullableWebhookEventTypeFilter) Set(val *WebhookEventTypeFilter)
func (*NullableWebhookEventTypeFilter) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableWebhookEventTypeFilter) UnmarshalJSON(src []byte) error
func (*NullableWebhookEventTypeFilter) Unset ¶ added in v0.0.9
func (v *NullableWebhookEventTypeFilter) Unset()
type NullableWebhookList ¶
type NullableWebhookList struct {
// contains filtered or unexported fields
}
func NewNullableWebhookList ¶
func NewNullableWebhookList(val *WebhookList) *NullableWebhookList
func (NullableWebhookList) Get ¶
func (v NullableWebhookList) Get() *WebhookList
func (NullableWebhookList) IsSet ¶
func (v NullableWebhookList) IsSet() bool
func (NullableWebhookList) MarshalJSON ¶
func (v NullableWebhookList) MarshalJSON() ([]byte, error)
func (*NullableWebhookList) Set ¶
func (v *NullableWebhookList) Set(val *WebhookList)
func (*NullableWebhookList) UnmarshalJSON ¶
func (v *NullableWebhookList) UnmarshalJSON(src []byte) error
func (*NullableWebhookList) Unset ¶
func (v *NullableWebhookList) Unset()
type NullableWebhookWalletActivityFilter ¶ added in v0.0.9
type NullableWebhookWalletActivityFilter struct {
// contains filtered or unexported fields
}
func NewNullableWebhookWalletActivityFilter ¶ added in v0.0.9
func NewNullableWebhookWalletActivityFilter(val *WebhookWalletActivityFilter) *NullableWebhookWalletActivityFilter
func (NullableWebhookWalletActivityFilter) Get ¶ added in v0.0.9
func (v NullableWebhookWalletActivityFilter) Get() *WebhookWalletActivityFilter
func (NullableWebhookWalletActivityFilter) IsSet ¶ added in v0.0.9
func (v NullableWebhookWalletActivityFilter) IsSet() bool
func (NullableWebhookWalletActivityFilter) MarshalJSON ¶ added in v0.0.9
func (v NullableWebhookWalletActivityFilter) MarshalJSON() ([]byte, error)
func (*NullableWebhookWalletActivityFilter) Set ¶ added in v0.0.9
func (v *NullableWebhookWalletActivityFilter) Set(val *WebhookWalletActivityFilter)
func (*NullableWebhookWalletActivityFilter) UnmarshalJSON ¶ added in v0.0.9
func (v *NullableWebhookWalletActivityFilter) UnmarshalJSON(src []byte) error
func (*NullableWebhookWalletActivityFilter) Unset ¶ added in v0.0.9
func (v *NullableWebhookWalletActivityFilter) Unset()
type PayloadSignature ¶ added in v0.0.9
type PayloadSignature struct { // The ID of the payload signature. PayloadSignatureId string `json:"payload_signature_id"` // The ID of the wallet that owns the address. WalletId string `json:"wallet_id"` // The onchain address of the signer. AddressId string `json:"address_id"` // The unsigned payload. This is the payload that needs to be signed by the signer address. UnsignedPayload string `json:"unsigned_payload"` // The signature of the payload. Signature *string `json:"signature,omitempty"` // The status of the payload signature. Status string `json:"status"` }
PayloadSignature A payload signed by an address.
func NewPayloadSignature ¶ added in v0.0.9
func NewPayloadSignature(payloadSignatureId string, walletId string, addressId string, unsignedPayload string, status string) *PayloadSignature
NewPayloadSignature instantiates a new PayloadSignature 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
func NewPayloadSignatureWithDefaults ¶ added in v0.0.9
func NewPayloadSignatureWithDefaults() *PayloadSignature
NewPayloadSignatureWithDefaults instantiates a new PayloadSignature 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
func (*PayloadSignature) GetAddressId ¶ added in v0.0.9
func (o *PayloadSignature) GetAddressId() string
GetAddressId returns the AddressId field value
func (*PayloadSignature) GetAddressIdOk ¶ added in v0.0.9
func (o *PayloadSignature) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*PayloadSignature) GetPayloadSignatureId ¶ added in v0.0.9
func (o *PayloadSignature) GetPayloadSignatureId() string
GetPayloadSignatureId returns the PayloadSignatureId field value
func (*PayloadSignature) GetPayloadSignatureIdOk ¶ added in v0.0.9
func (o *PayloadSignature) GetPayloadSignatureIdOk() (*string, bool)
GetPayloadSignatureIdOk returns a tuple with the PayloadSignatureId field value and a boolean to check if the value has been set.
func (*PayloadSignature) GetSignature ¶ added in v0.0.9
func (o *PayloadSignature) GetSignature() string
GetSignature returns the Signature field value if set, zero value otherwise.
func (*PayloadSignature) GetSignatureOk ¶ added in v0.0.9
func (o *PayloadSignature) GetSignatureOk() (*string, bool)
GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.
func (*PayloadSignature) GetStatus ¶ added in v0.0.9
func (o *PayloadSignature) GetStatus() string
GetStatus returns the Status field value
func (*PayloadSignature) GetStatusOk ¶ added in v0.0.9
func (o *PayloadSignature) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.
func (*PayloadSignature) GetUnsignedPayload ¶ added in v0.0.9
func (o *PayloadSignature) GetUnsignedPayload() string
GetUnsignedPayload returns the UnsignedPayload field value
func (*PayloadSignature) GetUnsignedPayloadOk ¶ added in v0.0.9
func (o *PayloadSignature) GetUnsignedPayloadOk() (*string, bool)
GetUnsignedPayloadOk returns a tuple with the UnsignedPayload field value and a boolean to check if the value has been set.
func (*PayloadSignature) GetWalletId ¶ added in v0.0.9
func (o *PayloadSignature) GetWalletId() string
GetWalletId returns the WalletId field value
func (*PayloadSignature) GetWalletIdOk ¶ added in v0.0.9
func (o *PayloadSignature) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*PayloadSignature) HasSignature ¶ added in v0.0.9
func (o *PayloadSignature) HasSignature() bool
HasSignature returns a boolean if a field has been set.
func (PayloadSignature) MarshalJSON ¶ added in v0.0.9
func (o PayloadSignature) MarshalJSON() ([]byte, error)
func (*PayloadSignature) SetAddressId ¶ added in v0.0.9
func (o *PayloadSignature) SetAddressId(v string)
SetAddressId sets field value
func (*PayloadSignature) SetPayloadSignatureId ¶ added in v0.0.9
func (o *PayloadSignature) SetPayloadSignatureId(v string)
SetPayloadSignatureId sets field value
func (*PayloadSignature) SetSignature ¶ added in v0.0.9
func (o *PayloadSignature) SetSignature(v string)
SetSignature gets a reference to the given string and assigns it to the Signature field.
func (*PayloadSignature) SetStatus ¶ added in v0.0.9
func (o *PayloadSignature) SetStatus(v string)
SetStatus sets field value
func (*PayloadSignature) SetUnsignedPayload ¶ added in v0.0.9
func (o *PayloadSignature) SetUnsignedPayload(v string)
SetUnsignedPayload sets field value
func (*PayloadSignature) SetWalletId ¶ added in v0.0.9
func (o *PayloadSignature) SetWalletId(v string)
SetWalletId sets field value
func (PayloadSignature) ToMap ¶ added in v0.0.9
func (o PayloadSignature) ToMap() (map[string]interface{}, error)
func (*PayloadSignature) UnmarshalJSON ¶ added in v0.0.9
func (o *PayloadSignature) UnmarshalJSON(data []byte) (err error)
type PayloadSignatureList ¶ added in v0.0.9
type PayloadSignatureList struct { Data []PayloadSignature `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of payload signatures for the address. TotalCount int32 `json:"total_count"` }
PayloadSignatureList
func NewPayloadSignatureList ¶ added in v0.0.9
func NewPayloadSignatureList(data []PayloadSignature, hasMore bool, nextPage string, totalCount int32) *PayloadSignatureList
NewPayloadSignatureList instantiates a new PayloadSignatureList 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
func NewPayloadSignatureListWithDefaults ¶ added in v0.0.9
func NewPayloadSignatureListWithDefaults() *PayloadSignatureList
NewPayloadSignatureListWithDefaults instantiates a new PayloadSignatureList 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
func (*PayloadSignatureList) GetData ¶ added in v0.0.9
func (o *PayloadSignatureList) GetData() []PayloadSignature
GetData returns the Data field value
func (*PayloadSignatureList) GetDataOk ¶ added in v0.0.9
func (o *PayloadSignatureList) GetDataOk() ([]PayloadSignature, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*PayloadSignatureList) GetHasMore ¶ added in v0.0.9
func (o *PayloadSignatureList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*PayloadSignatureList) GetHasMoreOk ¶ added in v0.0.9
func (o *PayloadSignatureList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*PayloadSignatureList) GetNextPage ¶ added in v0.0.9
func (o *PayloadSignatureList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*PayloadSignatureList) GetNextPageOk ¶ added in v0.0.9
func (o *PayloadSignatureList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*PayloadSignatureList) GetTotalCount ¶ added in v0.0.9
func (o *PayloadSignatureList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*PayloadSignatureList) GetTotalCountOk ¶ added in v0.0.9
func (o *PayloadSignatureList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (PayloadSignatureList) MarshalJSON ¶ added in v0.0.9
func (o PayloadSignatureList) MarshalJSON() ([]byte, error)
func (*PayloadSignatureList) SetData ¶ added in v0.0.9
func (o *PayloadSignatureList) SetData(v []PayloadSignature)
SetData sets field value
func (*PayloadSignatureList) SetHasMore ¶ added in v0.0.9
func (o *PayloadSignatureList) SetHasMore(v bool)
SetHasMore sets field value
func (*PayloadSignatureList) SetNextPage ¶ added in v0.0.9
func (o *PayloadSignatureList) SetNextPage(v string)
SetNextPage sets field value
func (*PayloadSignatureList) SetTotalCount ¶ added in v0.0.9
func (o *PayloadSignatureList) SetTotalCount(v int32)
SetTotalCount sets field value
func (PayloadSignatureList) ToMap ¶ added in v0.0.9
func (o PayloadSignatureList) ToMap() (map[string]interface{}, error)
func (*PayloadSignatureList) UnmarshalJSON ¶ added in v0.0.9
func (o *PayloadSignatureList) UnmarshalJSON(data []byte) (err error)
type SeedCreationEvent ¶
type SeedCreationEvent struct { // The ID of the wallet that the server-signer should create the seed for WalletId string `json:"wallet_id"` // The ID of the user that the wallet belongs to WalletUserId string `json:"wallet_user_id"` }
SeedCreationEvent An event representing a seed creation.
func NewSeedCreationEvent ¶
func NewSeedCreationEvent(walletId string, walletUserId string) *SeedCreationEvent
NewSeedCreationEvent instantiates a new SeedCreationEvent 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
func NewSeedCreationEventWithDefaults ¶
func NewSeedCreationEventWithDefaults() *SeedCreationEvent
NewSeedCreationEventWithDefaults instantiates a new SeedCreationEvent 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
func (*SeedCreationEvent) GetWalletId ¶
func (o *SeedCreationEvent) GetWalletId() string
GetWalletId returns the WalletId field value
func (*SeedCreationEvent) GetWalletIdOk ¶
func (o *SeedCreationEvent) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*SeedCreationEvent) GetWalletUserId ¶
func (o *SeedCreationEvent) GetWalletUserId() string
GetWalletUserId returns the WalletUserId field value
func (*SeedCreationEvent) GetWalletUserIdOk ¶
func (o *SeedCreationEvent) GetWalletUserIdOk() (*string, bool)
GetWalletUserIdOk returns a tuple with the WalletUserId field value and a boolean to check if the value has been set.
func (SeedCreationEvent) MarshalJSON ¶
func (o SeedCreationEvent) MarshalJSON() ([]byte, error)
func (*SeedCreationEvent) SetWalletId ¶
func (o *SeedCreationEvent) SetWalletId(v string)
SetWalletId sets field value
func (*SeedCreationEvent) SetWalletUserId ¶
func (o *SeedCreationEvent) SetWalletUserId(v string)
SetWalletUserId sets field value
func (SeedCreationEvent) ToMap ¶
func (o SeedCreationEvent) ToMap() (map[string]interface{}, error)
func (*SeedCreationEvent) UnmarshalJSON ¶
func (o *SeedCreationEvent) UnmarshalJSON(data []byte) (err error)
type SeedCreationEventResult ¶
type SeedCreationEventResult struct { // The ID of the wallet that the seed was created for WalletId string `json:"wallet_id"` // The ID of the user that the wallet belongs to WalletUserId string `json:"wallet_user_id"` // The extended public key for the first master key derived from seed. ExtendedPublicKey string `json:"extended_public_key"` // The ID of the seed in Server-Signer used to generate the extended public key. SeedId string `json:"seed_id"` }
SeedCreationEventResult The result to a SeedCreationEvent.
func NewSeedCreationEventResult ¶
func NewSeedCreationEventResult(walletId string, walletUserId string, extendedPublicKey string, seedId string) *SeedCreationEventResult
NewSeedCreationEventResult instantiates a new SeedCreationEventResult 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
func NewSeedCreationEventResultWithDefaults ¶
func NewSeedCreationEventResultWithDefaults() *SeedCreationEventResult
NewSeedCreationEventResultWithDefaults instantiates a new SeedCreationEventResult 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
func (*SeedCreationEventResult) GetExtendedPublicKey ¶
func (o *SeedCreationEventResult) GetExtendedPublicKey() string
GetExtendedPublicKey returns the ExtendedPublicKey field value
func (*SeedCreationEventResult) GetExtendedPublicKeyOk ¶
func (o *SeedCreationEventResult) GetExtendedPublicKeyOk() (*string, bool)
GetExtendedPublicKeyOk returns a tuple with the ExtendedPublicKey field value and a boolean to check if the value has been set.
func (*SeedCreationEventResult) GetSeedId ¶
func (o *SeedCreationEventResult) GetSeedId() string
GetSeedId returns the SeedId field value
func (*SeedCreationEventResult) GetSeedIdOk ¶
func (o *SeedCreationEventResult) GetSeedIdOk() (*string, bool)
GetSeedIdOk returns a tuple with the SeedId field value and a boolean to check if the value has been set.
func (*SeedCreationEventResult) GetWalletId ¶
func (o *SeedCreationEventResult) GetWalletId() string
GetWalletId returns the WalletId field value
func (*SeedCreationEventResult) GetWalletIdOk ¶
func (o *SeedCreationEventResult) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*SeedCreationEventResult) GetWalletUserId ¶
func (o *SeedCreationEventResult) GetWalletUserId() string
GetWalletUserId returns the WalletUserId field value
func (*SeedCreationEventResult) GetWalletUserIdOk ¶
func (o *SeedCreationEventResult) GetWalletUserIdOk() (*string, bool)
GetWalletUserIdOk returns a tuple with the WalletUserId field value and a boolean to check if the value has been set.
func (SeedCreationEventResult) MarshalJSON ¶
func (o SeedCreationEventResult) MarshalJSON() ([]byte, error)
func (*SeedCreationEventResult) SetExtendedPublicKey ¶
func (o *SeedCreationEventResult) SetExtendedPublicKey(v string)
SetExtendedPublicKey sets field value
func (*SeedCreationEventResult) SetSeedId ¶
func (o *SeedCreationEventResult) SetSeedId(v string)
SetSeedId sets field value
func (*SeedCreationEventResult) SetWalletId ¶
func (o *SeedCreationEventResult) SetWalletId(v string)
SetWalletId sets field value
func (*SeedCreationEventResult) SetWalletUserId ¶
func (o *SeedCreationEventResult) SetWalletUserId(v string)
SetWalletUserId sets field value
func (SeedCreationEventResult) ToMap ¶
func (o SeedCreationEventResult) ToMap() (map[string]interface{}, error)
func (*SeedCreationEventResult) UnmarshalJSON ¶
func (o *SeedCreationEventResult) UnmarshalJSON(data []byte) (err error)
type ServerConfiguration ¶
type ServerConfiguration struct { URL string Description string Variables map[string]ServerVariable }
ServerConfiguration stores the information about a server
type ServerConfigurations ¶
type ServerConfigurations []ServerConfiguration
ServerConfigurations stores multiple ServerConfiguration items
type ServerSigner ¶
type ServerSigner struct { // The ID of the server-signer ServerSignerId string `json:"server_signer_id"` // The IDs of the wallets that the server-signer can sign for Wallets []string `json:"wallets,omitempty"` // Whether the Server-Signer uses MPC. IsMpc bool `json:"is_mpc"` }
ServerSigner A Server-Signer assigned to sign transactions in a wallet.
func NewServerSigner ¶
func NewServerSigner(serverSignerId string, isMpc bool) *ServerSigner
NewServerSigner instantiates a new ServerSigner 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
func NewServerSignerWithDefaults ¶
func NewServerSignerWithDefaults() *ServerSigner
NewServerSignerWithDefaults instantiates a new ServerSigner 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
func (*ServerSigner) GetIsMpc ¶
func (o *ServerSigner) GetIsMpc() bool
GetIsMpc returns the IsMpc field value
func (*ServerSigner) GetIsMpcOk ¶
func (o *ServerSigner) GetIsMpcOk() (*bool, bool)
GetIsMpcOk returns a tuple with the IsMpc field value and a boolean to check if the value has been set.
func (*ServerSigner) GetServerSignerId ¶
func (o *ServerSigner) GetServerSignerId() string
GetServerSignerId returns the ServerSignerId field value
func (*ServerSigner) GetServerSignerIdOk ¶
func (o *ServerSigner) GetServerSignerIdOk() (*string, bool)
GetServerSignerIdOk returns a tuple with the ServerSignerId field value and a boolean to check if the value has been set.
func (*ServerSigner) GetWallets ¶
func (o *ServerSigner) GetWallets() []string
GetWallets returns the Wallets field value if set, zero value otherwise.
func (*ServerSigner) GetWalletsOk ¶
func (o *ServerSigner) GetWalletsOk() ([]string, bool)
GetWalletsOk returns a tuple with the Wallets field value if set, nil otherwise and a boolean to check if the value has been set.
func (*ServerSigner) HasWallets ¶
func (o *ServerSigner) HasWallets() bool
HasWallets returns a boolean if a field has been set.
func (ServerSigner) MarshalJSON ¶
func (o ServerSigner) MarshalJSON() ([]byte, error)
func (*ServerSigner) SetServerSignerId ¶
func (o *ServerSigner) SetServerSignerId(v string)
SetServerSignerId sets field value
func (*ServerSigner) SetWallets ¶
func (o *ServerSigner) SetWallets(v []string)
SetWallets gets a reference to the given []string and assigns it to the Wallets field.
func (ServerSigner) ToMap ¶
func (o ServerSigner) ToMap() (map[string]interface{}, error)
func (*ServerSigner) UnmarshalJSON ¶
func (o *ServerSigner) UnmarshalJSON(data []byte) (err error)
type ServerSignerEvent ¶
type ServerSignerEvent struct { // The ID of the server-signer that the event is for ServerSignerId string `json:"server_signer_id"` Event ServerSignerEventEvent `json:"event"` }
ServerSignerEvent An event that is waiting to be processed by a Server-Signer.
func NewServerSignerEvent ¶
func NewServerSignerEvent(serverSignerId string, event ServerSignerEventEvent) *ServerSignerEvent
NewServerSignerEvent instantiates a new ServerSignerEvent 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
func NewServerSignerEventWithDefaults ¶
func NewServerSignerEventWithDefaults() *ServerSignerEvent
NewServerSignerEventWithDefaults instantiates a new ServerSignerEvent 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
func (*ServerSignerEvent) GetEvent ¶
func (o *ServerSignerEvent) GetEvent() ServerSignerEventEvent
GetEvent returns the Event field value
func (*ServerSignerEvent) GetEventOk ¶
func (o *ServerSignerEvent) GetEventOk() (*ServerSignerEventEvent, bool)
GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.
func (*ServerSignerEvent) GetServerSignerId ¶
func (o *ServerSignerEvent) GetServerSignerId() string
GetServerSignerId returns the ServerSignerId field value
func (*ServerSignerEvent) GetServerSignerIdOk ¶
func (o *ServerSignerEvent) GetServerSignerIdOk() (*string, bool)
GetServerSignerIdOk returns a tuple with the ServerSignerId field value and a boolean to check if the value has been set.
func (ServerSignerEvent) MarshalJSON ¶
func (o ServerSignerEvent) MarshalJSON() ([]byte, error)
func (*ServerSignerEvent) SetEvent ¶
func (o *ServerSignerEvent) SetEvent(v ServerSignerEventEvent)
SetEvent sets field value
func (*ServerSignerEvent) SetServerSignerId ¶
func (o *ServerSignerEvent) SetServerSignerId(v string)
SetServerSignerId sets field value
func (ServerSignerEvent) ToMap ¶
func (o ServerSignerEvent) ToMap() (map[string]interface{}, error)
func (*ServerSignerEvent) UnmarshalJSON ¶
func (o *ServerSignerEvent) UnmarshalJSON(data []byte) (err error)
type ServerSignerEventEvent ¶
type ServerSignerEventEvent struct { SeedCreationEvent *SeedCreationEvent SignatureCreationEvent *SignatureCreationEvent }
ServerSignerEventEvent - struct for ServerSignerEventEvent
func SeedCreationEventAsServerSignerEventEvent ¶
func SeedCreationEventAsServerSignerEventEvent(v *SeedCreationEvent) ServerSignerEventEvent
SeedCreationEventAsServerSignerEventEvent is a convenience function that returns SeedCreationEvent wrapped in ServerSignerEventEvent
func SignatureCreationEventAsServerSignerEventEvent ¶
func SignatureCreationEventAsServerSignerEventEvent(v *SignatureCreationEvent) ServerSignerEventEvent
SignatureCreationEventAsServerSignerEventEvent is a convenience function that returns SignatureCreationEvent wrapped in ServerSignerEventEvent
func (*ServerSignerEventEvent) GetActualInstance ¶
func (obj *ServerSignerEventEvent) GetActualInstance() interface{}
Get the actual instance
func (ServerSignerEventEvent) MarshalJSON ¶
func (src ServerSignerEventEvent) MarshalJSON() ([]byte, error)
Marshal data from the first non-nil pointers in the struct to JSON
func (*ServerSignerEventEvent) UnmarshalJSON ¶
func (dst *ServerSignerEventEvent) UnmarshalJSON(data []byte) error
Unmarshal JSON data into one of the pointers in the struct
type ServerSignerEventList ¶
type ServerSignerEventList struct { Data []ServerSignerEvent `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of events for the server signer. TotalCount int32 `json:"total_count"` }
ServerSignerEventList
func NewServerSignerEventList ¶
func NewServerSignerEventList(data []ServerSignerEvent, hasMore bool, nextPage string, totalCount int32) *ServerSignerEventList
NewServerSignerEventList instantiates a new ServerSignerEventList 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
func NewServerSignerEventListWithDefaults ¶
func NewServerSignerEventListWithDefaults() *ServerSignerEventList
NewServerSignerEventListWithDefaults instantiates a new ServerSignerEventList 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
func (*ServerSignerEventList) GetData ¶
func (o *ServerSignerEventList) GetData() []ServerSignerEvent
GetData returns the Data field value
func (*ServerSignerEventList) GetDataOk ¶
func (o *ServerSignerEventList) GetDataOk() ([]ServerSignerEvent, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*ServerSignerEventList) GetHasMore ¶
func (o *ServerSignerEventList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*ServerSignerEventList) GetHasMoreOk ¶
func (o *ServerSignerEventList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*ServerSignerEventList) GetNextPage ¶
func (o *ServerSignerEventList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*ServerSignerEventList) GetNextPageOk ¶
func (o *ServerSignerEventList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*ServerSignerEventList) GetTotalCount ¶
func (o *ServerSignerEventList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*ServerSignerEventList) GetTotalCountOk ¶
func (o *ServerSignerEventList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (ServerSignerEventList) MarshalJSON ¶
func (o ServerSignerEventList) MarshalJSON() ([]byte, error)
func (*ServerSignerEventList) SetData ¶
func (o *ServerSignerEventList) SetData(v []ServerSignerEvent)
SetData sets field value
func (*ServerSignerEventList) SetHasMore ¶
func (o *ServerSignerEventList) SetHasMore(v bool)
SetHasMore sets field value
func (*ServerSignerEventList) SetNextPage ¶
func (o *ServerSignerEventList) SetNextPage(v string)
SetNextPage sets field value
func (*ServerSignerEventList) SetTotalCount ¶
func (o *ServerSignerEventList) SetTotalCount(v int32)
SetTotalCount sets field value
func (ServerSignerEventList) ToMap ¶
func (o ServerSignerEventList) ToMap() (map[string]interface{}, error)
func (*ServerSignerEventList) UnmarshalJSON ¶
func (o *ServerSignerEventList) UnmarshalJSON(data []byte) (err error)
type ServerSignerList ¶
type ServerSignerList struct { Data []ServerSigner `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of server-signers for the project. TotalCount int32 `json:"total_count"` }
ServerSignerList
func NewServerSignerList ¶
func NewServerSignerList(data []ServerSigner, hasMore bool, nextPage string, totalCount int32) *ServerSignerList
NewServerSignerList instantiates a new ServerSignerList 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
func NewServerSignerListWithDefaults ¶
func NewServerSignerListWithDefaults() *ServerSignerList
NewServerSignerListWithDefaults instantiates a new ServerSignerList 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
func (*ServerSignerList) GetData ¶
func (o *ServerSignerList) GetData() []ServerSigner
GetData returns the Data field value
func (*ServerSignerList) GetDataOk ¶
func (o *ServerSignerList) GetDataOk() ([]ServerSigner, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*ServerSignerList) GetHasMore ¶
func (o *ServerSignerList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*ServerSignerList) GetHasMoreOk ¶
func (o *ServerSignerList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*ServerSignerList) GetNextPage ¶
func (o *ServerSignerList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*ServerSignerList) GetNextPageOk ¶
func (o *ServerSignerList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*ServerSignerList) GetTotalCount ¶
func (o *ServerSignerList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*ServerSignerList) GetTotalCountOk ¶
func (o *ServerSignerList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (ServerSignerList) MarshalJSON ¶
func (o ServerSignerList) MarshalJSON() ([]byte, error)
func (*ServerSignerList) SetData ¶
func (o *ServerSignerList) SetData(v []ServerSigner)
SetData sets field value
func (*ServerSignerList) SetHasMore ¶
func (o *ServerSignerList) SetHasMore(v bool)
SetHasMore sets field value
func (*ServerSignerList) SetNextPage ¶
func (o *ServerSignerList) SetNextPage(v string)
SetNextPage sets field value
func (*ServerSignerList) SetTotalCount ¶
func (o *ServerSignerList) SetTotalCount(v int32)
SetTotalCount sets field value
func (ServerSignerList) ToMap ¶
func (o ServerSignerList) ToMap() (map[string]interface{}, error)
func (*ServerSignerList) UnmarshalJSON ¶
func (o *ServerSignerList) UnmarshalJSON(data []byte) (err error)
type ServerSignersAPI ¶
type ServerSignersAPI interface { /* CreateServerSigner Create a new Server-Signer Create a new Server-Signer @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiCreateServerSignerRequest */ CreateServerSigner(ctx context.Context) ApiCreateServerSignerRequest // CreateServerSignerExecute executes the request // @return ServerSigner CreateServerSignerExecute(r ApiCreateServerSignerRequest) (*ServerSigner, *http.Response, error) /* GetServerSigner Get a server signer by ID Get a server signer by ID @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to fetch @return ApiGetServerSignerRequest */ GetServerSigner(ctx context.Context, serverSignerId string) ApiGetServerSignerRequest // GetServerSignerExecute executes the request // @return ServerSigner GetServerSignerExecute(r ApiGetServerSignerRequest) (*ServerSigner, *http.Response, error) /* ListServerSignerEvents List events for a server signer List events for a server signer @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to fetch events for @return ApiListServerSignerEventsRequest */ ListServerSignerEvents(ctx context.Context, serverSignerId string) ApiListServerSignerEventsRequest // ListServerSignerEventsExecute executes the request // @return ServerSignerEventList ListServerSignerEventsExecute(r ApiListServerSignerEventsRequest) (*ServerSignerEventList, *http.Response, error) /* ListServerSigners List server signers for the current project List server signers for the current project @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiListServerSignersRequest */ ListServerSigners(ctx context.Context) ApiListServerSignersRequest // ListServerSignersExecute executes the request // @return ServerSignerList ListServerSignersExecute(r ApiListServerSignersRequest) (*ServerSignerList, *http.Response, error) /* SubmitServerSignerSeedEventResult Submit the result of a server signer event Submit the result of a server signer event @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to submit the event result for @return ApiSubmitServerSignerSeedEventResultRequest */ SubmitServerSignerSeedEventResult(ctx context.Context, serverSignerId string) ApiSubmitServerSignerSeedEventResultRequest // SubmitServerSignerSeedEventResultExecute executes the request // @return SeedCreationEventResult SubmitServerSignerSeedEventResultExecute(r ApiSubmitServerSignerSeedEventResultRequest) (*SeedCreationEventResult, *http.Response, error) /* SubmitServerSignerSignatureEventResult Submit the result of a server signer event Submit the result of a server signer event @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to submit the event result for @return ApiSubmitServerSignerSignatureEventResultRequest */ SubmitServerSignerSignatureEventResult(ctx context.Context, serverSignerId string) ApiSubmitServerSignerSignatureEventResultRequest // SubmitServerSignerSignatureEventResultExecute executes the request // @return SignatureCreationEventResult SubmitServerSignerSignatureEventResultExecute(r ApiSubmitServerSignerSignatureEventResultRequest) (*SignatureCreationEventResult, *http.Response, error) }
type ServerSignersAPIService ¶
type ServerSignersAPIService service
ServerSignersAPIService ServerSignersAPI service
func (*ServerSignersAPIService) CreateServerSigner ¶
func (a *ServerSignersAPIService) CreateServerSigner(ctx context.Context) ApiCreateServerSignerRequest
CreateServerSigner Create a new Server-Signer
Create a new Server-Signer
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiCreateServerSignerRequest
func (*ServerSignersAPIService) CreateServerSignerExecute ¶
func (a *ServerSignersAPIService) CreateServerSignerExecute(r ApiCreateServerSignerRequest) (*ServerSigner, *http.Response, error)
Execute executes the request
@return ServerSigner
func (*ServerSignersAPIService) GetServerSigner ¶
func (a *ServerSignersAPIService) GetServerSigner(ctx context.Context, serverSignerId string) ApiGetServerSignerRequest
GetServerSigner Get a server signer by ID
Get a server signer by ID
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to fetch @return ApiGetServerSignerRequest
func (*ServerSignersAPIService) GetServerSignerExecute ¶
func (a *ServerSignersAPIService) GetServerSignerExecute(r ApiGetServerSignerRequest) (*ServerSigner, *http.Response, error)
Execute executes the request
@return ServerSigner
func (*ServerSignersAPIService) ListServerSignerEvents ¶
func (a *ServerSignersAPIService) ListServerSignerEvents(ctx context.Context, serverSignerId string) ApiListServerSignerEventsRequest
ListServerSignerEvents List events for a server signer
List events for a server signer
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to fetch events for @return ApiListServerSignerEventsRequest
func (*ServerSignersAPIService) ListServerSignerEventsExecute ¶
func (a *ServerSignersAPIService) ListServerSignerEventsExecute(r ApiListServerSignerEventsRequest) (*ServerSignerEventList, *http.Response, error)
Execute executes the request
@return ServerSignerEventList
func (*ServerSignersAPIService) ListServerSigners ¶
func (a *ServerSignersAPIService) ListServerSigners(ctx context.Context) ApiListServerSignersRequest
ListServerSigners List server signers for the current project
List server signers for the current project
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiListServerSignersRequest
func (*ServerSignersAPIService) ListServerSignersExecute ¶
func (a *ServerSignersAPIService) ListServerSignersExecute(r ApiListServerSignersRequest) (*ServerSignerList, *http.Response, error)
Execute executes the request
@return ServerSignerList
func (*ServerSignersAPIService) SubmitServerSignerSeedEventResult ¶
func (a *ServerSignersAPIService) SubmitServerSignerSeedEventResult(ctx context.Context, serverSignerId string) ApiSubmitServerSignerSeedEventResultRequest
SubmitServerSignerSeedEventResult Submit the result of a server signer event
Submit the result of a server signer event
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to submit the event result for @return ApiSubmitServerSignerSeedEventResultRequest
func (*ServerSignersAPIService) SubmitServerSignerSeedEventResultExecute ¶
func (a *ServerSignersAPIService) SubmitServerSignerSeedEventResultExecute(r ApiSubmitServerSignerSeedEventResultRequest) (*SeedCreationEventResult, *http.Response, error)
Execute executes the request
@return SeedCreationEventResult
func (*ServerSignersAPIService) SubmitServerSignerSignatureEventResult ¶
func (a *ServerSignersAPIService) SubmitServerSignerSignatureEventResult(ctx context.Context, serverSignerId string) ApiSubmitServerSignerSignatureEventResultRequest
SubmitServerSignerSignatureEventResult Submit the result of a server signer event
Submit the result of a server signer event
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param serverSignerId The ID of the server signer to submit the event result for @return ApiSubmitServerSignerSignatureEventResultRequest
func (*ServerSignersAPIService) SubmitServerSignerSignatureEventResultExecute ¶
func (a *ServerSignersAPIService) SubmitServerSignerSignatureEventResultExecute(r ApiSubmitServerSignerSignatureEventResultRequest) (*SignatureCreationEventResult, *http.Response, error)
Execute executes the request
@return SignatureCreationEventResult
type ServerVariable ¶
ServerVariable stores the information about a server variable
type SignatureCreationEvent ¶
type SignatureCreationEvent struct { // The ID of the seed that the server-signer should create the signature for SeedId string `json:"seed_id"` // The ID of the wallet the signature is for WalletId string `json:"wallet_id"` // The ID of the user that the wallet belongs to WalletUserId string `json:"wallet_user_id"` // The ID of the address the transfer belongs to AddressId string `json:"address_id"` // The index of the address that the server-signer should sign with AddressIndex int32 `json:"address_index"` // The payload that the server-signer should sign SigningPayload string `json:"signing_payload"` TransactionType TransactionType `json:"transaction_type"` // The ID of the transaction that the server-signer should sign TransactionId string `json:"transaction_id"` }
SignatureCreationEvent An event representing a signature creation.
func NewSignatureCreationEvent ¶
func NewSignatureCreationEvent(seedId string, walletId string, walletUserId string, addressId string, addressIndex int32, signingPayload string, transactionType TransactionType, transactionId string) *SignatureCreationEvent
NewSignatureCreationEvent instantiates a new SignatureCreationEvent 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
func NewSignatureCreationEventWithDefaults ¶
func NewSignatureCreationEventWithDefaults() *SignatureCreationEvent
NewSignatureCreationEventWithDefaults instantiates a new SignatureCreationEvent 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
func (*SignatureCreationEvent) GetAddressId ¶
func (o *SignatureCreationEvent) GetAddressId() string
GetAddressId returns the AddressId field value
func (*SignatureCreationEvent) GetAddressIdOk ¶
func (o *SignatureCreationEvent) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*SignatureCreationEvent) GetAddressIndex ¶
func (o *SignatureCreationEvent) GetAddressIndex() int32
GetAddressIndex returns the AddressIndex field value
func (*SignatureCreationEvent) GetAddressIndexOk ¶
func (o *SignatureCreationEvent) GetAddressIndexOk() (*int32, bool)
GetAddressIndexOk returns a tuple with the AddressIndex field value and a boolean to check if the value has been set.
func (*SignatureCreationEvent) GetSeedId ¶
func (o *SignatureCreationEvent) GetSeedId() string
GetSeedId returns the SeedId field value
func (*SignatureCreationEvent) GetSeedIdOk ¶
func (o *SignatureCreationEvent) GetSeedIdOk() (*string, bool)
GetSeedIdOk returns a tuple with the SeedId field value and a boolean to check if the value has been set.
func (*SignatureCreationEvent) GetSigningPayload ¶
func (o *SignatureCreationEvent) GetSigningPayload() string
GetSigningPayload returns the SigningPayload field value
func (*SignatureCreationEvent) GetSigningPayloadOk ¶
func (o *SignatureCreationEvent) GetSigningPayloadOk() (*string, bool)
GetSigningPayloadOk returns a tuple with the SigningPayload field value and a boolean to check if the value has been set.
func (*SignatureCreationEvent) GetTransactionId ¶
func (o *SignatureCreationEvent) GetTransactionId() string
GetTransactionId returns the TransactionId field value
func (*SignatureCreationEvent) GetTransactionIdOk ¶
func (o *SignatureCreationEvent) GetTransactionIdOk() (*string, bool)
GetTransactionIdOk returns a tuple with the TransactionId field value and a boolean to check if the value has been set.
func (*SignatureCreationEvent) GetTransactionType ¶
func (o *SignatureCreationEvent) GetTransactionType() TransactionType
GetTransactionType returns the TransactionType field value
func (*SignatureCreationEvent) GetTransactionTypeOk ¶
func (o *SignatureCreationEvent) GetTransactionTypeOk() (*TransactionType, bool)
GetTransactionTypeOk returns a tuple with the TransactionType field value and a boolean to check if the value has been set.
func (*SignatureCreationEvent) GetWalletId ¶
func (o *SignatureCreationEvent) GetWalletId() string
GetWalletId returns the WalletId field value
func (*SignatureCreationEvent) GetWalletIdOk ¶
func (o *SignatureCreationEvent) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*SignatureCreationEvent) GetWalletUserId ¶
func (o *SignatureCreationEvent) GetWalletUserId() string
GetWalletUserId returns the WalletUserId field value
func (*SignatureCreationEvent) GetWalletUserIdOk ¶
func (o *SignatureCreationEvent) GetWalletUserIdOk() (*string, bool)
GetWalletUserIdOk returns a tuple with the WalletUserId field value and a boolean to check if the value has been set.
func (SignatureCreationEvent) MarshalJSON ¶
func (o SignatureCreationEvent) MarshalJSON() ([]byte, error)
func (*SignatureCreationEvent) SetAddressId ¶
func (o *SignatureCreationEvent) SetAddressId(v string)
SetAddressId sets field value
func (*SignatureCreationEvent) SetAddressIndex ¶
func (o *SignatureCreationEvent) SetAddressIndex(v int32)
SetAddressIndex sets field value
func (*SignatureCreationEvent) SetSeedId ¶
func (o *SignatureCreationEvent) SetSeedId(v string)
SetSeedId sets field value
func (*SignatureCreationEvent) SetSigningPayload ¶
func (o *SignatureCreationEvent) SetSigningPayload(v string)
SetSigningPayload sets field value
func (*SignatureCreationEvent) SetTransactionId ¶
func (o *SignatureCreationEvent) SetTransactionId(v string)
SetTransactionId sets field value
func (*SignatureCreationEvent) SetTransactionType ¶
func (o *SignatureCreationEvent) SetTransactionType(v TransactionType)
SetTransactionType sets field value
func (*SignatureCreationEvent) SetWalletId ¶
func (o *SignatureCreationEvent) SetWalletId(v string)
SetWalletId sets field value
func (*SignatureCreationEvent) SetWalletUserId ¶
func (o *SignatureCreationEvent) SetWalletUserId(v string)
SetWalletUserId sets field value
func (SignatureCreationEvent) ToMap ¶
func (o SignatureCreationEvent) ToMap() (map[string]interface{}, error)
func (*SignatureCreationEvent) UnmarshalJSON ¶
func (o *SignatureCreationEvent) UnmarshalJSON(data []byte) (err error)
type SignatureCreationEventResult ¶
type SignatureCreationEventResult struct { // The ID of the wallet that the event was created for. WalletId string `json:"wallet_id"` // The ID of the user that the wallet belongs to WalletUserId string `json:"wallet_user_id"` // The ID of the address the transfer belongs to AddressId string `json:"address_id"` TransactionType TransactionType `json:"transaction_type"` // The ID of the transaction that the Server-Signer has signed for TransactionId string `json:"transaction_id"` // The signature created by the server-signer. Signature string `json:"signature"` }
SignatureCreationEventResult The result to a SignatureCreationEvent.
func NewSignatureCreationEventResult ¶
func NewSignatureCreationEventResult(walletId string, walletUserId string, addressId string, transactionType TransactionType, transactionId string, signature string) *SignatureCreationEventResult
NewSignatureCreationEventResult instantiates a new SignatureCreationEventResult 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
func NewSignatureCreationEventResultWithDefaults ¶
func NewSignatureCreationEventResultWithDefaults() *SignatureCreationEventResult
NewSignatureCreationEventResultWithDefaults instantiates a new SignatureCreationEventResult 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
func (*SignatureCreationEventResult) GetAddressId ¶
func (o *SignatureCreationEventResult) GetAddressId() string
GetAddressId returns the AddressId field value
func (*SignatureCreationEventResult) GetAddressIdOk ¶
func (o *SignatureCreationEventResult) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*SignatureCreationEventResult) GetSignature ¶
func (o *SignatureCreationEventResult) GetSignature() string
GetSignature returns the Signature field value
func (*SignatureCreationEventResult) GetSignatureOk ¶
func (o *SignatureCreationEventResult) GetSignatureOk() (*string, bool)
GetSignatureOk returns a tuple with the Signature field value and a boolean to check if the value has been set.
func (*SignatureCreationEventResult) GetTransactionId ¶
func (o *SignatureCreationEventResult) GetTransactionId() string
GetTransactionId returns the TransactionId field value
func (*SignatureCreationEventResult) GetTransactionIdOk ¶
func (o *SignatureCreationEventResult) GetTransactionIdOk() (*string, bool)
GetTransactionIdOk returns a tuple with the TransactionId field value and a boolean to check if the value has been set.
func (*SignatureCreationEventResult) GetTransactionType ¶
func (o *SignatureCreationEventResult) GetTransactionType() TransactionType
GetTransactionType returns the TransactionType field value
func (*SignatureCreationEventResult) GetTransactionTypeOk ¶
func (o *SignatureCreationEventResult) GetTransactionTypeOk() (*TransactionType, bool)
GetTransactionTypeOk returns a tuple with the TransactionType field value and a boolean to check if the value has been set.
func (*SignatureCreationEventResult) GetWalletId ¶
func (o *SignatureCreationEventResult) GetWalletId() string
GetWalletId returns the WalletId field value
func (*SignatureCreationEventResult) GetWalletIdOk ¶
func (o *SignatureCreationEventResult) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*SignatureCreationEventResult) GetWalletUserId ¶
func (o *SignatureCreationEventResult) GetWalletUserId() string
GetWalletUserId returns the WalletUserId field value
func (*SignatureCreationEventResult) GetWalletUserIdOk ¶
func (o *SignatureCreationEventResult) GetWalletUserIdOk() (*string, bool)
GetWalletUserIdOk returns a tuple with the WalletUserId field value and a boolean to check if the value has been set.
func (SignatureCreationEventResult) MarshalJSON ¶
func (o SignatureCreationEventResult) MarshalJSON() ([]byte, error)
func (*SignatureCreationEventResult) SetAddressId ¶
func (o *SignatureCreationEventResult) SetAddressId(v string)
SetAddressId sets field value
func (*SignatureCreationEventResult) SetSignature ¶
func (o *SignatureCreationEventResult) SetSignature(v string)
SetSignature sets field value
func (*SignatureCreationEventResult) SetTransactionId ¶
func (o *SignatureCreationEventResult) SetTransactionId(v string)
SetTransactionId sets field value
func (*SignatureCreationEventResult) SetTransactionType ¶
func (o *SignatureCreationEventResult) SetTransactionType(v TransactionType)
SetTransactionType sets field value
func (*SignatureCreationEventResult) SetWalletId ¶
func (o *SignatureCreationEventResult) SetWalletId(v string)
SetWalletId sets field value
func (*SignatureCreationEventResult) SetWalletUserId ¶
func (o *SignatureCreationEventResult) SetWalletUserId(v string)
SetWalletUserId sets field value
func (SignatureCreationEventResult) ToMap ¶
func (o SignatureCreationEventResult) ToMap() (map[string]interface{}, error)
func (*SignatureCreationEventResult) UnmarshalJSON ¶
func (o *SignatureCreationEventResult) UnmarshalJSON(data []byte) (err error)
type SignedVoluntaryExitMessageMetadata ¶
type SignedVoluntaryExitMessageMetadata struct { // The public key of the validator associated with the exit message. ValidatorPubKey string `json:"validator_pub_key"` // The current fork version of the Ethereum beacon chain. Fork string `json:"fork"` // A base64 encoded version of a json string representing a voluntary exit message. SignedVoluntaryExit string `json:"signed_voluntary_exit"` }
SignedVoluntaryExitMessageMetadata Signed voluntary exit message metadata to be provided to beacon chain to exit a validator.
func NewSignedVoluntaryExitMessageMetadata ¶
func NewSignedVoluntaryExitMessageMetadata(validatorPubKey string, fork string, signedVoluntaryExit string) *SignedVoluntaryExitMessageMetadata
NewSignedVoluntaryExitMessageMetadata instantiates a new SignedVoluntaryExitMessageMetadata 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
func NewSignedVoluntaryExitMessageMetadataWithDefaults ¶
func NewSignedVoluntaryExitMessageMetadataWithDefaults() *SignedVoluntaryExitMessageMetadata
NewSignedVoluntaryExitMessageMetadataWithDefaults instantiates a new SignedVoluntaryExitMessageMetadata 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
func (*SignedVoluntaryExitMessageMetadata) GetFork ¶
func (o *SignedVoluntaryExitMessageMetadata) GetFork() string
GetFork returns the Fork field value
func (*SignedVoluntaryExitMessageMetadata) GetForkOk ¶
func (o *SignedVoluntaryExitMessageMetadata) GetForkOk() (*string, bool)
GetForkOk returns a tuple with the Fork field value and a boolean to check if the value has been set.
func (*SignedVoluntaryExitMessageMetadata) GetSignedVoluntaryExit ¶
func (o *SignedVoluntaryExitMessageMetadata) GetSignedVoluntaryExit() string
GetSignedVoluntaryExit returns the SignedVoluntaryExit field value
func (*SignedVoluntaryExitMessageMetadata) GetSignedVoluntaryExitOk ¶
func (o *SignedVoluntaryExitMessageMetadata) GetSignedVoluntaryExitOk() (*string, bool)
GetSignedVoluntaryExitOk returns a tuple with the SignedVoluntaryExit field value and a boolean to check if the value has been set.
func (*SignedVoluntaryExitMessageMetadata) GetValidatorPubKey ¶
func (o *SignedVoluntaryExitMessageMetadata) GetValidatorPubKey() string
GetValidatorPubKey returns the ValidatorPubKey field value
func (*SignedVoluntaryExitMessageMetadata) GetValidatorPubKeyOk ¶
func (o *SignedVoluntaryExitMessageMetadata) GetValidatorPubKeyOk() (*string, bool)
GetValidatorPubKeyOk returns a tuple with the ValidatorPubKey field value and a boolean to check if the value has been set.
func (SignedVoluntaryExitMessageMetadata) MarshalJSON ¶
func (o SignedVoluntaryExitMessageMetadata) MarshalJSON() ([]byte, error)
func (*SignedVoluntaryExitMessageMetadata) SetFork ¶
func (o *SignedVoluntaryExitMessageMetadata) SetFork(v string)
SetFork sets field value
func (*SignedVoluntaryExitMessageMetadata) SetSignedVoluntaryExit ¶
func (o *SignedVoluntaryExitMessageMetadata) SetSignedVoluntaryExit(v string)
SetSignedVoluntaryExit sets field value
func (*SignedVoluntaryExitMessageMetadata) SetValidatorPubKey ¶
func (o *SignedVoluntaryExitMessageMetadata) SetValidatorPubKey(v string)
SetValidatorPubKey sets field value
func (SignedVoluntaryExitMessageMetadata) ToMap ¶
func (o SignedVoluntaryExitMessageMetadata) ToMap() (map[string]interface{}, error)
func (*SignedVoluntaryExitMessageMetadata) UnmarshalJSON ¶
func (o *SignedVoluntaryExitMessageMetadata) UnmarshalJSON(data []byte) (err error)
type SmartContract ¶ added in v0.0.9
type SmartContract struct { // The unique identifier of the smart contract SmartContractId string `json:"smart_contract_id"` // The name of the blockchain network NetworkId string `json:"network_id"` // The ID of the wallet that deployed the smart contract WalletId string `json:"wallet_id"` // The EVM address of the smart contract ContractAddress string `json:"contract_address"` // The EVM address of the account that deployed the smart contract DeployerAddress string `json:"deployer_address"` Type SmartContractType `json:"type"` Options SmartContractOptions `json:"options"` // The JSON-encoded ABI of the contract Abi string `json:"abi"` Transaction Transaction `json:"transaction"` }
SmartContract Represents a smart contract on the blockchain
func NewSmartContract ¶ added in v0.0.9
func NewSmartContract(smartContractId string, networkId string, walletId string, contractAddress string, deployerAddress string, type_ SmartContractType, options SmartContractOptions, abi string, transaction Transaction) *SmartContract
NewSmartContract instantiates a new SmartContract 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
func NewSmartContractWithDefaults ¶ added in v0.0.9
func NewSmartContractWithDefaults() *SmartContract
NewSmartContractWithDefaults instantiates a new SmartContract 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
func (*SmartContract) GetAbi ¶ added in v0.0.9
func (o *SmartContract) GetAbi() string
GetAbi returns the Abi field value
func (*SmartContract) GetAbiOk ¶ added in v0.0.9
func (o *SmartContract) GetAbiOk() (*string, bool)
GetAbiOk returns a tuple with the Abi field value and a boolean to check if the value has been set.
func (*SmartContract) GetContractAddress ¶ added in v0.0.9
func (o *SmartContract) GetContractAddress() string
GetContractAddress returns the ContractAddress field value
func (*SmartContract) GetContractAddressOk ¶ added in v0.0.9
func (o *SmartContract) GetContractAddressOk() (*string, bool)
GetContractAddressOk returns a tuple with the ContractAddress field value and a boolean to check if the value has been set.
func (*SmartContract) GetDeployerAddress ¶ added in v0.0.9
func (o *SmartContract) GetDeployerAddress() string
GetDeployerAddress returns the DeployerAddress field value
func (*SmartContract) GetDeployerAddressOk ¶ added in v0.0.9
func (o *SmartContract) GetDeployerAddressOk() (*string, bool)
GetDeployerAddressOk returns a tuple with the DeployerAddress field value and a boolean to check if the value has been set.
func (*SmartContract) GetNetworkId ¶ added in v0.0.9
func (o *SmartContract) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*SmartContract) GetNetworkIdOk ¶ added in v0.0.9
func (o *SmartContract) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*SmartContract) GetOptions ¶ added in v0.0.9
func (o *SmartContract) GetOptions() SmartContractOptions
GetOptions returns the Options field value
func (*SmartContract) GetOptionsOk ¶ added in v0.0.9
func (o *SmartContract) GetOptionsOk() (*SmartContractOptions, bool)
GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.
func (*SmartContract) GetSmartContractId ¶ added in v0.0.9
func (o *SmartContract) GetSmartContractId() string
GetSmartContractId returns the SmartContractId field value
func (*SmartContract) GetSmartContractIdOk ¶ added in v0.0.9
func (o *SmartContract) GetSmartContractIdOk() (*string, bool)
GetSmartContractIdOk returns a tuple with the SmartContractId field value and a boolean to check if the value has been set.
func (*SmartContract) GetTransaction ¶ added in v0.0.9
func (o *SmartContract) GetTransaction() Transaction
GetTransaction returns the Transaction field value
func (*SmartContract) GetTransactionOk ¶ added in v0.0.9
func (o *SmartContract) GetTransactionOk() (*Transaction, bool)
GetTransactionOk returns a tuple with the Transaction field value and a boolean to check if the value has been set.
func (*SmartContract) GetType ¶ added in v0.0.9
func (o *SmartContract) GetType() SmartContractType
GetType returns the Type field value
func (*SmartContract) GetTypeOk ¶ added in v0.0.9
func (o *SmartContract) GetTypeOk() (*SmartContractType, bool)
GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.
func (*SmartContract) GetWalletId ¶ added in v0.0.9
func (o *SmartContract) GetWalletId() string
GetWalletId returns the WalletId field value
func (*SmartContract) GetWalletIdOk ¶ added in v0.0.9
func (o *SmartContract) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (SmartContract) MarshalJSON ¶ added in v0.0.9
func (o SmartContract) MarshalJSON() ([]byte, error)
func (*SmartContract) SetAbi ¶ added in v0.0.9
func (o *SmartContract) SetAbi(v string)
SetAbi sets field value
func (*SmartContract) SetContractAddress ¶ added in v0.0.9
func (o *SmartContract) SetContractAddress(v string)
SetContractAddress sets field value
func (*SmartContract) SetDeployerAddress ¶ added in v0.0.9
func (o *SmartContract) SetDeployerAddress(v string)
SetDeployerAddress sets field value
func (*SmartContract) SetNetworkId ¶ added in v0.0.9
func (o *SmartContract) SetNetworkId(v string)
SetNetworkId sets field value
func (*SmartContract) SetOptions ¶ added in v0.0.9
func (o *SmartContract) SetOptions(v SmartContractOptions)
SetOptions sets field value
func (*SmartContract) SetSmartContractId ¶ added in v0.0.9
func (o *SmartContract) SetSmartContractId(v string)
SetSmartContractId sets field value
func (*SmartContract) SetTransaction ¶ added in v0.0.9
func (o *SmartContract) SetTransaction(v Transaction)
SetTransaction sets field value
func (*SmartContract) SetType ¶ added in v0.0.9
func (o *SmartContract) SetType(v SmartContractType)
SetType sets field value
func (*SmartContract) SetWalletId ¶ added in v0.0.9
func (o *SmartContract) SetWalletId(v string)
SetWalletId sets field value
func (SmartContract) ToMap ¶ added in v0.0.9
func (o SmartContract) ToMap() (map[string]interface{}, error)
func (*SmartContract) UnmarshalJSON ¶ added in v0.0.9
func (o *SmartContract) UnmarshalJSON(data []byte) (err error)
type SmartContractList ¶ added in v0.0.9
type SmartContractList struct { Data []SmartContract `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` }
SmartContractList struct for SmartContractList
func NewSmartContractList ¶ added in v0.0.9
func NewSmartContractList(data []SmartContract, hasMore bool, nextPage string) *SmartContractList
NewSmartContractList instantiates a new SmartContractList 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
func NewSmartContractListWithDefaults ¶ added in v0.0.9
func NewSmartContractListWithDefaults() *SmartContractList
NewSmartContractListWithDefaults instantiates a new SmartContractList 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
func (*SmartContractList) GetData ¶ added in v0.0.9
func (o *SmartContractList) GetData() []SmartContract
GetData returns the Data field value
func (*SmartContractList) GetDataOk ¶ added in v0.0.9
func (o *SmartContractList) GetDataOk() ([]SmartContract, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*SmartContractList) GetHasMore ¶ added in v0.0.9
func (o *SmartContractList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*SmartContractList) GetHasMoreOk ¶ added in v0.0.9
func (o *SmartContractList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*SmartContractList) GetNextPage ¶ added in v0.0.9
func (o *SmartContractList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*SmartContractList) GetNextPageOk ¶ added in v0.0.9
func (o *SmartContractList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (SmartContractList) MarshalJSON ¶ added in v0.0.9
func (o SmartContractList) MarshalJSON() ([]byte, error)
func (*SmartContractList) SetData ¶ added in v0.0.9
func (o *SmartContractList) SetData(v []SmartContract)
SetData sets field value
func (*SmartContractList) SetHasMore ¶ added in v0.0.9
func (o *SmartContractList) SetHasMore(v bool)
SetHasMore sets field value
func (*SmartContractList) SetNextPage ¶ added in v0.0.9
func (o *SmartContractList) SetNextPage(v string)
SetNextPage sets field value
func (SmartContractList) ToMap ¶ added in v0.0.9
func (o SmartContractList) ToMap() (map[string]interface{}, error)
func (*SmartContractList) UnmarshalJSON ¶ added in v0.0.9
func (o *SmartContractList) UnmarshalJSON(data []byte) (err error)
type SmartContractOptions ¶ added in v0.0.9
type SmartContractOptions struct { NFTContractOptions *NFTContractOptions TokenContractOptions *TokenContractOptions }
SmartContractOptions - Options for smart contract creation
func NFTContractOptionsAsSmartContractOptions ¶ added in v0.0.9
func NFTContractOptionsAsSmartContractOptions(v *NFTContractOptions) SmartContractOptions
NFTContractOptionsAsSmartContractOptions is a convenience function that returns NFTContractOptions wrapped in SmartContractOptions
func TokenContractOptionsAsSmartContractOptions ¶ added in v0.0.9
func TokenContractOptionsAsSmartContractOptions(v *TokenContractOptions) SmartContractOptions
TokenContractOptionsAsSmartContractOptions is a convenience function that returns TokenContractOptions wrapped in SmartContractOptions
func (*SmartContractOptions) GetActualInstance ¶ added in v0.0.9
func (obj *SmartContractOptions) GetActualInstance() interface{}
Get the actual instance
func (SmartContractOptions) MarshalJSON ¶ added in v0.0.9
func (src SmartContractOptions) MarshalJSON() ([]byte, error)
Marshal data from the first non-nil pointers in the struct to JSON
func (*SmartContractOptions) UnmarshalJSON ¶ added in v0.0.9
func (dst *SmartContractOptions) UnmarshalJSON(data []byte) error
Unmarshal JSON data into one of the pointers in the struct
type SmartContractType ¶ added in v0.0.9
type SmartContractType string
SmartContractType The type of the smart contract
const ( SMARTCONTRACTTYPE_ERC20 SmartContractType = "erc20" SMARTCONTRACTTYPE_ERC721 SmartContractType = "erc721" )
List of SmartContractType
func NewSmartContractTypeFromValue ¶ added in v0.0.9
func NewSmartContractTypeFromValue(v string) (*SmartContractType, error)
NewSmartContractTypeFromValue returns a pointer to a valid SmartContractType for the value passed as argument, or an error if the value passed is not allowed by the enum
func (SmartContractType) IsValid ¶ added in v0.0.9
func (v SmartContractType) IsValid() bool
IsValid return true if the value is valid for the enum, false otherwise
func (SmartContractType) Ptr ¶ added in v0.0.9
func (v SmartContractType) Ptr() *SmartContractType
Ptr returns reference to SmartContractType value
func (*SmartContractType) UnmarshalJSON ¶ added in v0.0.9
func (v *SmartContractType) UnmarshalJSON(src []byte) error
type SmartContractsAPI ¶ added in v0.0.9
type SmartContractsAPI interface { /* CreateSmartContract Create a new smart contract Create a new smart contract @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to deploy the smart contract from. @return ApiCreateSmartContractRequest */ CreateSmartContract(ctx context.Context, walletId string, addressId string) ApiCreateSmartContractRequest // CreateSmartContractExecute executes the request // @return SmartContract CreateSmartContractExecute(r ApiCreateSmartContractRequest) (*SmartContract, *http.Response, error) /* DeploySmartContract Deploy a smart contract Deploys a smart contract, by broadcasting the transaction to the network. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to broadcast the transaction from. @param smartContractId The UUID of the smart contract to broadcast the transaction to. @return ApiDeploySmartContractRequest */ DeploySmartContract(ctx context.Context, walletId string, addressId string, smartContractId string) ApiDeploySmartContractRequest // DeploySmartContractExecute executes the request // @return SmartContract DeploySmartContractExecute(r ApiDeploySmartContractRequest) (*SmartContract, *http.Response, error) /* GetSmartContract Get a specific smart contract deployed by address Get a specific smart contract deployed by address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to fetch the smart contract for. @param smartContractId The UUID of the smart contract to fetch. @return ApiGetSmartContractRequest */ GetSmartContract(ctx context.Context, walletId string, addressId string, smartContractId string) ApiGetSmartContractRequest // GetSmartContractExecute executes the request // @return SmartContract GetSmartContractExecute(r ApiGetSmartContractRequest) (*SmartContract, *http.Response, error) /* ListSmartContracts List smart contracts deployed by address List all smart contracts deployed by address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to fetch the smart contracts for. @return ApiListSmartContractsRequest */ ListSmartContracts(ctx context.Context, walletId string, addressId string) ApiListSmartContractsRequest // ListSmartContractsExecute executes the request // @return SmartContractList ListSmartContractsExecute(r ApiListSmartContractsRequest) (*SmartContractList, *http.Response, error) }
type SmartContractsAPIService ¶ added in v0.0.9
type SmartContractsAPIService service
SmartContractsAPIService SmartContractsAPI service
func (*SmartContractsAPIService) CreateSmartContract ¶ added in v0.0.9
func (a *SmartContractsAPIService) CreateSmartContract(ctx context.Context, walletId string, addressId string) ApiCreateSmartContractRequest
CreateSmartContract Create a new smart contract
Create a new smart contract
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to deploy the smart contract from. @return ApiCreateSmartContractRequest
func (*SmartContractsAPIService) CreateSmartContractExecute ¶ added in v0.0.9
func (a *SmartContractsAPIService) CreateSmartContractExecute(r ApiCreateSmartContractRequest) (*SmartContract, *http.Response, error)
Execute executes the request
@return SmartContract
func (*SmartContractsAPIService) DeploySmartContract ¶ added in v0.0.9
func (a *SmartContractsAPIService) DeploySmartContract(ctx context.Context, walletId string, addressId string, smartContractId string) ApiDeploySmartContractRequest
DeploySmartContract Deploy a smart contract
Deploys a smart contract, by broadcasting the transaction to the network.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to broadcast the transaction from. @param smartContractId The UUID of the smart contract to broadcast the transaction to. @return ApiDeploySmartContractRequest
func (*SmartContractsAPIService) DeploySmartContractExecute ¶ added in v0.0.9
func (a *SmartContractsAPIService) DeploySmartContractExecute(r ApiDeploySmartContractRequest) (*SmartContract, *http.Response, error)
Execute executes the request
@return SmartContract
func (*SmartContractsAPIService) GetSmartContract ¶ added in v0.0.9
func (a *SmartContractsAPIService) GetSmartContract(ctx context.Context, walletId string, addressId string, smartContractId string) ApiGetSmartContractRequest
GetSmartContract Get a specific smart contract deployed by address
Get a specific smart contract deployed by address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to fetch the smart contract for. @param smartContractId The UUID of the smart contract to fetch. @return ApiGetSmartContractRequest
func (*SmartContractsAPIService) GetSmartContractExecute ¶ added in v0.0.9
func (a *SmartContractsAPIService) GetSmartContractExecute(r ApiGetSmartContractRequest) (*SmartContract, *http.Response, error)
Execute executes the request
@return SmartContract
func (*SmartContractsAPIService) ListSmartContracts ¶ added in v0.0.9
func (a *SmartContractsAPIService) ListSmartContracts(ctx context.Context, walletId string, addressId string) ApiListSmartContractsRequest
ListSmartContracts List smart contracts deployed by address
List all smart contracts deployed by address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to fetch the smart contracts for. @return ApiListSmartContractsRequest
func (*SmartContractsAPIService) ListSmartContractsExecute ¶ added in v0.0.9
func (a *SmartContractsAPIService) ListSmartContractsExecute(r ApiListSmartContractsRequest) (*SmartContractList, *http.Response, error)
Execute executes the request
@return SmartContractList
type SponsoredSend ¶
type SponsoredSend struct { // The onchain address of the recipient ToAddressId string `json:"to_address_id"` // The raw typed data for the sponsored send RawTypedData string `json:"raw_typed_data"` // The typed data hash for the sponsored send. This is the typed data hash that needs to be signed by the sender. TypedDataHash string `json:"typed_data_hash"` // The signed hash of the sponsored send typed data. Signature *string `json:"signature,omitempty"` // The hash of the onchain sponsored send transaction TransactionHash *string `json:"transaction_hash,omitempty"` // The link to view the transaction on a block explorer. This is optional and may not be present for all transactions. TransactionLink *string `json:"transaction_link,omitempty"` // The status of the sponsored send Status string `json:"status"` }
SponsoredSend An onchain sponsored gasless send.
func NewSponsoredSend ¶
func NewSponsoredSend(toAddressId string, rawTypedData string, typedDataHash string, status string) *SponsoredSend
NewSponsoredSend instantiates a new SponsoredSend 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
func NewSponsoredSendWithDefaults ¶
func NewSponsoredSendWithDefaults() *SponsoredSend
NewSponsoredSendWithDefaults instantiates a new SponsoredSend 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
func (*SponsoredSend) GetRawTypedData ¶
func (o *SponsoredSend) GetRawTypedData() string
GetRawTypedData returns the RawTypedData field value
func (*SponsoredSend) GetRawTypedDataOk ¶
func (o *SponsoredSend) GetRawTypedDataOk() (*string, bool)
GetRawTypedDataOk returns a tuple with the RawTypedData field value and a boolean to check if the value has been set.
func (*SponsoredSend) GetSignature ¶
func (o *SponsoredSend) GetSignature() string
GetSignature returns the Signature field value if set, zero value otherwise.
func (*SponsoredSend) GetSignatureOk ¶
func (o *SponsoredSend) GetSignatureOk() (*string, bool)
GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.
func (*SponsoredSend) GetStatus ¶
func (o *SponsoredSend) GetStatus() string
GetStatus returns the Status field value
func (*SponsoredSend) GetStatusOk ¶
func (o *SponsoredSend) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.
func (*SponsoredSend) GetToAddressId ¶
func (o *SponsoredSend) GetToAddressId() string
GetToAddressId returns the ToAddressId field value
func (*SponsoredSend) GetToAddressIdOk ¶
func (o *SponsoredSend) GetToAddressIdOk() (*string, bool)
GetToAddressIdOk returns a tuple with the ToAddressId field value and a boolean to check if the value has been set.
func (*SponsoredSend) GetTransactionHash ¶
func (o *SponsoredSend) GetTransactionHash() string
GetTransactionHash returns the TransactionHash field value if set, zero value otherwise.
func (*SponsoredSend) GetTransactionHashOk ¶
func (o *SponsoredSend) GetTransactionHashOk() (*string, bool)
GetTransactionHashOk returns a tuple with the TransactionHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*SponsoredSend) GetTransactionLink ¶
func (o *SponsoredSend) GetTransactionLink() string
GetTransactionLink returns the TransactionLink field value if set, zero value otherwise.
func (*SponsoredSend) GetTransactionLinkOk ¶
func (o *SponsoredSend) GetTransactionLinkOk() (*string, bool)
GetTransactionLinkOk returns a tuple with the TransactionLink field value if set, nil otherwise and a boolean to check if the value has been set.
func (*SponsoredSend) GetTypedDataHash ¶
func (o *SponsoredSend) GetTypedDataHash() string
GetTypedDataHash returns the TypedDataHash field value
func (*SponsoredSend) GetTypedDataHashOk ¶
func (o *SponsoredSend) GetTypedDataHashOk() (*string, bool)
GetTypedDataHashOk returns a tuple with the TypedDataHash field value and a boolean to check if the value has been set.
func (*SponsoredSend) HasSignature ¶
func (o *SponsoredSend) HasSignature() bool
HasSignature returns a boolean if a field has been set.
func (*SponsoredSend) HasTransactionHash ¶
func (o *SponsoredSend) HasTransactionHash() bool
HasTransactionHash returns a boolean if a field has been set.
func (*SponsoredSend) HasTransactionLink ¶
func (o *SponsoredSend) HasTransactionLink() bool
HasTransactionLink returns a boolean if a field has been set.
func (SponsoredSend) MarshalJSON ¶
func (o SponsoredSend) MarshalJSON() ([]byte, error)
func (*SponsoredSend) SetRawTypedData ¶
func (o *SponsoredSend) SetRawTypedData(v string)
SetRawTypedData sets field value
func (*SponsoredSend) SetSignature ¶
func (o *SponsoredSend) SetSignature(v string)
SetSignature gets a reference to the given string and assigns it to the Signature field.
func (*SponsoredSend) SetStatus ¶
func (o *SponsoredSend) SetStatus(v string)
SetStatus sets field value
func (*SponsoredSend) SetToAddressId ¶
func (o *SponsoredSend) SetToAddressId(v string)
SetToAddressId sets field value
func (*SponsoredSend) SetTransactionHash ¶
func (o *SponsoredSend) SetTransactionHash(v string)
SetTransactionHash gets a reference to the given string and assigns it to the TransactionHash field.
func (*SponsoredSend) SetTransactionLink ¶
func (o *SponsoredSend) SetTransactionLink(v string)
SetTransactionLink gets a reference to the given string and assigns it to the TransactionLink field.
func (*SponsoredSend) SetTypedDataHash ¶
func (o *SponsoredSend) SetTypedDataHash(v string)
SetTypedDataHash sets field value
func (SponsoredSend) ToMap ¶
func (o SponsoredSend) ToMap() (map[string]interface{}, error)
func (*SponsoredSend) UnmarshalJSON ¶
func (o *SponsoredSend) UnmarshalJSON(data []byte) (err error)
type StakeAPI ¶
type StakeAPI interface { /* BuildStakingOperation Build a new staking operation Build a new staking operation @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiBuildStakingOperationRequest */ BuildStakingOperation(ctx context.Context) ApiBuildStakingOperationRequest // BuildStakingOperationExecute executes the request // @return StakingOperation BuildStakingOperationExecute(r ApiBuildStakingOperationRequest) (*StakingOperation, *http.Response, error) /* FetchHistoricalStakingBalances Fetch historical staking balances Fetch historical staking balances for given address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network. @param addressId The onchain address for which the historical staking balances are being fetched. @return ApiFetchHistoricalStakingBalancesRequest */ FetchHistoricalStakingBalances(ctx context.Context, networkId string, addressId string) ApiFetchHistoricalStakingBalancesRequest // FetchHistoricalStakingBalancesExecute executes the request // @return FetchHistoricalStakingBalances200Response FetchHistoricalStakingBalancesExecute(r ApiFetchHistoricalStakingBalancesRequest) (*FetchHistoricalStakingBalances200Response, *http.Response, error) /* FetchStakingRewards Fetch staking rewards Fetch staking rewards for a list of addresses @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiFetchStakingRewardsRequest */ FetchStakingRewards(ctx context.Context) ApiFetchStakingRewardsRequest // FetchStakingRewardsExecute executes the request // @return FetchStakingRewards200Response FetchStakingRewardsExecute(r ApiFetchStakingRewardsRequest) (*FetchStakingRewards200Response, *http.Response, error) /* GetExternalStakingOperation Get the latest state of a staking operation Get the latest state of a staking operation @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the staking operation for @param stakingOperationId The ID of the staking operation @return ApiGetExternalStakingOperationRequest */ GetExternalStakingOperation(ctx context.Context, networkId string, addressId string, stakingOperationId string) ApiGetExternalStakingOperationRequest // GetExternalStakingOperationExecute executes the request // @return StakingOperation GetExternalStakingOperationExecute(r ApiGetExternalStakingOperationRequest) (*StakingOperation, *http.Response, error) /* GetStakingContext Get staking context Get staking context for an address @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiGetStakingContextRequest */ GetStakingContext(ctx context.Context) ApiGetStakingContextRequest // GetStakingContextExecute executes the request // @return StakingContext GetStakingContextExecute(r ApiGetStakingContextRequest) (*StakingContext, *http.Response, error) }
type StakeAPIService ¶
type StakeAPIService service
StakeAPIService StakeAPI service
func (*StakeAPIService) BuildStakingOperation ¶
func (a *StakeAPIService) BuildStakingOperation(ctx context.Context) ApiBuildStakingOperationRequest
BuildStakingOperation Build a new staking operation
Build a new staking operation
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiBuildStakingOperationRequest
func (*StakeAPIService) BuildStakingOperationExecute ¶
func (a *StakeAPIService) BuildStakingOperationExecute(r ApiBuildStakingOperationRequest) (*StakingOperation, *http.Response, error)
Execute executes the request
@return StakingOperation
func (*StakeAPIService) FetchHistoricalStakingBalances ¶
func (a *StakeAPIService) FetchHistoricalStakingBalances(ctx context.Context, networkId string, addressId string) ApiFetchHistoricalStakingBalancesRequest
FetchHistoricalStakingBalances Fetch historical staking balances
Fetch historical staking balances for given address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network. @param addressId The onchain address for which the historical staking balances are being fetched. @return ApiFetchHistoricalStakingBalancesRequest
func (*StakeAPIService) FetchHistoricalStakingBalancesExecute ¶
func (a *StakeAPIService) FetchHistoricalStakingBalancesExecute(r ApiFetchHistoricalStakingBalancesRequest) (*FetchHistoricalStakingBalances200Response, *http.Response, error)
Execute executes the request
@return FetchHistoricalStakingBalances200Response
func (*StakeAPIService) FetchStakingRewards ¶
func (a *StakeAPIService) FetchStakingRewards(ctx context.Context) ApiFetchStakingRewardsRequest
FetchStakingRewards Fetch staking rewards
Fetch staking rewards for a list of addresses
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiFetchStakingRewardsRequest
func (*StakeAPIService) FetchStakingRewardsExecute ¶
func (a *StakeAPIService) FetchStakingRewardsExecute(r ApiFetchStakingRewardsRequest) (*FetchStakingRewards200Response, *http.Response, error)
Execute executes the request
@return FetchStakingRewards200Response
func (*StakeAPIService) GetExternalStakingOperation ¶
func (a *StakeAPIService) GetExternalStakingOperation(ctx context.Context, networkId string, addressId string, stakingOperationId string) ApiGetExternalStakingOperationRequest
GetExternalStakingOperation Get the latest state of a staking operation
Get the latest state of a staking operation
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network @param addressId The ID of the address to fetch the staking operation for @param stakingOperationId The ID of the staking operation @return ApiGetExternalStakingOperationRequest
func (*StakeAPIService) GetExternalStakingOperationExecute ¶
func (a *StakeAPIService) GetExternalStakingOperationExecute(r ApiGetExternalStakingOperationRequest) (*StakingOperation, *http.Response, error)
Execute executes the request
@return StakingOperation
func (*StakeAPIService) GetStakingContext ¶
func (a *StakeAPIService) GetStakingContext(ctx context.Context) ApiGetStakingContextRequest
GetStakingContext Get staking context
Get staking context for an address
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiGetStakingContextRequest
func (*StakeAPIService) GetStakingContextExecute ¶
func (a *StakeAPIService) GetStakingContextExecute(r ApiGetStakingContextRequest) (*StakingContext, *http.Response, error)
Execute executes the request
@return StakingContext
type StakingBalance ¶
type StakingBalance struct { // The onchain address for which the staking balances are being fetched. Address string `json:"address"` // The timestamp of the staking balance in UTC. Date time.Time `json:"date"` BondedStake Balance `json:"bonded_stake"` UnbondedBalance Balance `json:"unbonded_balance"` // The type of staking participation. ParticipantType string `json:"participant_type"` }
StakingBalance The staking balances for an address.
func NewStakingBalance ¶
func NewStakingBalance(address string, date time.Time, bondedStake Balance, unbondedBalance Balance, participantType string) *StakingBalance
NewStakingBalance instantiates a new StakingBalance 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
func NewStakingBalanceWithDefaults ¶
func NewStakingBalanceWithDefaults() *StakingBalance
NewStakingBalanceWithDefaults instantiates a new StakingBalance 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
func (*StakingBalance) GetAddress ¶
func (o *StakingBalance) GetAddress() string
GetAddress returns the Address field value
func (*StakingBalance) GetAddressOk ¶
func (o *StakingBalance) GetAddressOk() (*string, bool)
GetAddressOk returns a tuple with the Address field value and a boolean to check if the value has been set.
func (*StakingBalance) GetBondedStake ¶
func (o *StakingBalance) GetBondedStake() Balance
GetBondedStake returns the BondedStake field value
func (*StakingBalance) GetBondedStakeOk ¶
func (o *StakingBalance) GetBondedStakeOk() (*Balance, bool)
GetBondedStakeOk returns a tuple with the BondedStake field value and a boolean to check if the value has been set.
func (*StakingBalance) GetDate ¶
func (o *StakingBalance) GetDate() time.Time
GetDate returns the Date field value
func (*StakingBalance) GetDateOk ¶
func (o *StakingBalance) GetDateOk() (*time.Time, bool)
GetDateOk returns a tuple with the Date field value and a boolean to check if the value has been set.
func (*StakingBalance) GetParticipantType ¶
func (o *StakingBalance) GetParticipantType() string
GetParticipantType returns the ParticipantType field value
func (*StakingBalance) GetParticipantTypeOk ¶
func (o *StakingBalance) GetParticipantTypeOk() (*string, bool)
GetParticipantTypeOk returns a tuple with the ParticipantType field value and a boolean to check if the value has been set.
func (*StakingBalance) GetUnbondedBalance ¶
func (o *StakingBalance) GetUnbondedBalance() Balance
GetUnbondedBalance returns the UnbondedBalance field value
func (*StakingBalance) GetUnbondedBalanceOk ¶
func (o *StakingBalance) GetUnbondedBalanceOk() (*Balance, bool)
GetUnbondedBalanceOk returns a tuple with the UnbondedBalance field value and a boolean to check if the value has been set.
func (StakingBalance) MarshalJSON ¶
func (o StakingBalance) MarshalJSON() ([]byte, error)
func (*StakingBalance) SetAddress ¶
func (o *StakingBalance) SetAddress(v string)
SetAddress sets field value
func (*StakingBalance) SetBondedStake ¶
func (o *StakingBalance) SetBondedStake(v Balance)
SetBondedStake sets field value
func (*StakingBalance) SetDate ¶
func (o *StakingBalance) SetDate(v time.Time)
SetDate sets field value
func (*StakingBalance) SetParticipantType ¶
func (o *StakingBalance) SetParticipantType(v string)
SetParticipantType sets field value
func (*StakingBalance) SetUnbondedBalance ¶
func (o *StakingBalance) SetUnbondedBalance(v Balance)
SetUnbondedBalance sets field value
func (StakingBalance) ToMap ¶
func (o StakingBalance) ToMap() (map[string]interface{}, error)
func (*StakingBalance) UnmarshalJSON ¶
func (o *StakingBalance) UnmarshalJSON(data []byte) (err error)
type StakingContext ¶
type StakingContext struct {
Context StakingContextContext `json:"context"`
}
StakingContext Context needed to perform a staking operation
func NewStakingContext ¶
func NewStakingContext(context StakingContextContext) *StakingContext
NewStakingContext instantiates a new StakingContext 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
func NewStakingContextWithDefaults ¶
func NewStakingContextWithDefaults() *StakingContext
NewStakingContextWithDefaults instantiates a new StakingContext 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
func (*StakingContext) GetContext ¶
func (o *StakingContext) GetContext() StakingContextContext
GetContext returns the Context field value
func (*StakingContext) GetContextOk ¶
func (o *StakingContext) GetContextOk() (*StakingContextContext, bool)
GetContextOk returns a tuple with the Context field value and a boolean to check if the value has been set.
func (StakingContext) MarshalJSON ¶
func (o StakingContext) MarshalJSON() ([]byte, error)
func (*StakingContext) SetContext ¶
func (o *StakingContext) SetContext(v StakingContextContext)
SetContext sets field value
func (StakingContext) ToMap ¶
func (o StakingContext) ToMap() (map[string]interface{}, error)
func (*StakingContext) UnmarshalJSON ¶
func (o *StakingContext) UnmarshalJSON(data []byte) (err error)
type StakingContextContext ¶
type StakingContextContext struct { StakeableBalance Balance `json:"stakeable_balance"` UnstakeableBalance Balance `json:"unstakeable_balance"` ClaimableBalance Balance `json:"claimable_balance"` }
StakingContextContext struct for StakingContextContext
func NewStakingContextContext ¶
func NewStakingContextContext(stakeableBalance Balance, unstakeableBalance Balance, claimableBalance Balance) *StakingContextContext
NewStakingContextContext instantiates a new StakingContextContext 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
func NewStakingContextContextWithDefaults ¶
func NewStakingContextContextWithDefaults() *StakingContextContext
NewStakingContextContextWithDefaults instantiates a new StakingContextContext 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
func (*StakingContextContext) GetClaimableBalance ¶
func (o *StakingContextContext) GetClaimableBalance() Balance
GetClaimableBalance returns the ClaimableBalance field value
func (*StakingContextContext) GetClaimableBalanceOk ¶
func (o *StakingContextContext) GetClaimableBalanceOk() (*Balance, bool)
GetClaimableBalanceOk returns a tuple with the ClaimableBalance field value and a boolean to check if the value has been set.
func (*StakingContextContext) GetStakeableBalance ¶
func (o *StakingContextContext) GetStakeableBalance() Balance
GetStakeableBalance returns the StakeableBalance field value
func (*StakingContextContext) GetStakeableBalanceOk ¶
func (o *StakingContextContext) GetStakeableBalanceOk() (*Balance, bool)
GetStakeableBalanceOk returns a tuple with the StakeableBalance field value and a boolean to check if the value has been set.
func (*StakingContextContext) GetUnstakeableBalance ¶
func (o *StakingContextContext) GetUnstakeableBalance() Balance
GetUnstakeableBalance returns the UnstakeableBalance field value
func (*StakingContextContext) GetUnstakeableBalanceOk ¶
func (o *StakingContextContext) GetUnstakeableBalanceOk() (*Balance, bool)
GetUnstakeableBalanceOk returns a tuple with the UnstakeableBalance field value and a boolean to check if the value has been set.
func (StakingContextContext) MarshalJSON ¶
func (o StakingContextContext) MarshalJSON() ([]byte, error)
func (*StakingContextContext) SetClaimableBalance ¶
func (o *StakingContextContext) SetClaimableBalance(v Balance)
SetClaimableBalance sets field value
func (*StakingContextContext) SetStakeableBalance ¶
func (o *StakingContextContext) SetStakeableBalance(v Balance)
SetStakeableBalance sets field value
func (*StakingContextContext) SetUnstakeableBalance ¶
func (o *StakingContextContext) SetUnstakeableBalance(v Balance)
SetUnstakeableBalance sets field value
func (StakingContextContext) ToMap ¶
func (o StakingContextContext) ToMap() (map[string]interface{}, error)
func (*StakingContextContext) UnmarshalJSON ¶
func (o *StakingContextContext) UnmarshalJSON(data []byte) (err error)
type StakingOperation ¶
type StakingOperation struct { // The unique ID of the staking operation. Id string `json:"id"` // The ID of the wallet that owns the address. WalletId *string `json:"wallet_id,omitempty"` // The ID of the blockchain network. NetworkId string `json:"network_id"` // The onchain address orchestrating the staking operation. AddressId string `json:"address_id"` // The status of the staking operation. Status string `json:"status"` // The transaction(s) that will execute the staking operation onchain. Transactions []Transaction `json:"transactions"` Metadata *StakingOperationMetadata `json:"metadata,omitempty"` }
StakingOperation A list of onchain transactions to help realize a staking action.
func NewStakingOperation ¶
func NewStakingOperation(id string, networkId string, addressId string, status string, transactions []Transaction) *StakingOperation
NewStakingOperation instantiates a new StakingOperation 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
func NewStakingOperationWithDefaults ¶
func NewStakingOperationWithDefaults() *StakingOperation
NewStakingOperationWithDefaults instantiates a new StakingOperation 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
func (*StakingOperation) GetAddressId ¶
func (o *StakingOperation) GetAddressId() string
GetAddressId returns the AddressId field value
func (*StakingOperation) GetAddressIdOk ¶
func (o *StakingOperation) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*StakingOperation) GetId ¶
func (o *StakingOperation) GetId() string
GetId returns the Id field value
func (*StakingOperation) GetIdOk ¶
func (o *StakingOperation) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*StakingOperation) GetMetadata ¶
func (o *StakingOperation) GetMetadata() StakingOperationMetadata
GetMetadata returns the Metadata field value if set, zero value otherwise.
func (*StakingOperation) GetMetadataOk ¶
func (o *StakingOperation) GetMetadataOk() (*StakingOperationMetadata, bool)
GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.
func (*StakingOperation) GetNetworkId ¶
func (o *StakingOperation) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*StakingOperation) GetNetworkIdOk ¶
func (o *StakingOperation) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*StakingOperation) GetStatus ¶
func (o *StakingOperation) GetStatus() string
GetStatus returns the Status field value
func (*StakingOperation) GetStatusOk ¶
func (o *StakingOperation) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.
func (*StakingOperation) GetTransactions ¶
func (o *StakingOperation) GetTransactions() []Transaction
GetTransactions returns the Transactions field value
func (*StakingOperation) GetTransactionsOk ¶
func (o *StakingOperation) GetTransactionsOk() ([]Transaction, bool)
GetTransactionsOk returns a tuple with the Transactions field value and a boolean to check if the value has been set.
func (*StakingOperation) GetWalletId ¶
func (o *StakingOperation) GetWalletId() string
GetWalletId returns the WalletId field value if set, zero value otherwise.
func (*StakingOperation) GetWalletIdOk ¶
func (o *StakingOperation) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*StakingOperation) HasMetadata ¶
func (o *StakingOperation) HasMetadata() bool
HasMetadata returns a boolean if a field has been set.
func (*StakingOperation) HasWalletId ¶
func (o *StakingOperation) HasWalletId() bool
HasWalletId returns a boolean if a field has been set.
func (StakingOperation) MarshalJSON ¶
func (o StakingOperation) MarshalJSON() ([]byte, error)
func (*StakingOperation) SetAddressId ¶
func (o *StakingOperation) SetAddressId(v string)
SetAddressId sets field value
func (*StakingOperation) SetMetadata ¶
func (o *StakingOperation) SetMetadata(v StakingOperationMetadata)
SetMetadata gets a reference to the given StakingOperationMetadata and assigns it to the Metadata field.
func (*StakingOperation) SetNetworkId ¶
func (o *StakingOperation) SetNetworkId(v string)
SetNetworkId sets field value
func (*StakingOperation) SetStatus ¶
func (o *StakingOperation) SetStatus(v string)
SetStatus sets field value
func (*StakingOperation) SetTransactions ¶
func (o *StakingOperation) SetTransactions(v []Transaction)
SetTransactions sets field value
func (*StakingOperation) SetWalletId ¶
func (o *StakingOperation) SetWalletId(v string)
SetWalletId gets a reference to the given string and assigns it to the WalletId field.
func (StakingOperation) ToMap ¶
func (o StakingOperation) ToMap() (map[string]interface{}, error)
func (*StakingOperation) UnmarshalJSON ¶
func (o *StakingOperation) UnmarshalJSON(data []byte) (err error)
type StakingOperationMetadata ¶
type StakingOperationMetadata struct {
ArrayOfSignedVoluntaryExitMessageMetadata *[]SignedVoluntaryExitMessageMetadata
}
StakingOperationMetadata - struct for StakingOperationMetadata
func ArrayOfSignedVoluntaryExitMessageMetadataAsStakingOperationMetadata ¶
func ArrayOfSignedVoluntaryExitMessageMetadataAsStakingOperationMetadata(v *[]SignedVoluntaryExitMessageMetadata) StakingOperationMetadata
[]SignedVoluntaryExitMessageMetadataAsStakingOperationMetadata is a convenience function that returns []SignedVoluntaryExitMessageMetadata wrapped in StakingOperationMetadata
func (*StakingOperationMetadata) GetActualInstance ¶
func (obj *StakingOperationMetadata) GetActualInstance() interface{}
Get the actual instance
func (StakingOperationMetadata) MarshalJSON ¶
func (src StakingOperationMetadata) MarshalJSON() ([]byte, error)
Marshal data from the first non-nil pointers in the struct to JSON
func (*StakingOperationMetadata) UnmarshalJSON ¶
func (dst *StakingOperationMetadata) UnmarshalJSON(data []byte) error
Unmarshal JSON data into one of the pointers in the struct
type StakingReward ¶
type StakingReward struct { // The onchain address for which the staking rewards are being fetched. AddressId string `json:"address_id"` // The timestamp of the reward in UTC. Date time.Time `json:"date"` // The reward amount in requested \"format\". Default is USD. Amount string `json:"amount"` // The state of the reward. State string `json:"state"` Format StakingRewardFormat `json:"format"` UsdValue StakingRewardUSDValue `json:"usd_value"` }
StakingReward The staking rewards for an address.
func NewStakingReward ¶
func NewStakingReward(addressId string, date time.Time, amount string, state string, format StakingRewardFormat, usdValue StakingRewardUSDValue) *StakingReward
NewStakingReward instantiates a new StakingReward 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
func NewStakingRewardWithDefaults ¶
func NewStakingRewardWithDefaults() *StakingReward
NewStakingRewardWithDefaults instantiates a new StakingReward 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
func (*StakingReward) GetAddressId ¶
func (o *StakingReward) GetAddressId() string
GetAddressId returns the AddressId field value
func (*StakingReward) GetAddressIdOk ¶
func (o *StakingReward) GetAddressIdOk() (*string, bool)
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*StakingReward) GetAmount ¶
func (o *StakingReward) GetAmount() string
GetAmount returns the Amount field value
func (*StakingReward) GetAmountOk ¶
func (o *StakingReward) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*StakingReward) GetDate ¶
func (o *StakingReward) GetDate() time.Time
GetDate returns the Date field value
func (*StakingReward) GetDateOk ¶
func (o *StakingReward) GetDateOk() (*time.Time, bool)
GetDateOk returns a tuple with the Date field value and a boolean to check if the value has been set.
func (*StakingReward) GetFormat ¶
func (o *StakingReward) GetFormat() StakingRewardFormat
GetFormat returns the Format field value
func (*StakingReward) GetFormatOk ¶
func (o *StakingReward) GetFormatOk() (*StakingRewardFormat, bool)
GetFormatOk returns a tuple with the Format field value and a boolean to check if the value has been set.
func (*StakingReward) GetState ¶
func (o *StakingReward) GetState() string
GetState returns the State field value
func (*StakingReward) GetStateOk ¶
func (o *StakingReward) GetStateOk() (*string, bool)
GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.
func (*StakingReward) GetUsdValue ¶
func (o *StakingReward) GetUsdValue() StakingRewardUSDValue
GetUsdValue returns the UsdValue field value
func (*StakingReward) GetUsdValueOk ¶
func (o *StakingReward) GetUsdValueOk() (*StakingRewardUSDValue, bool)
GetUsdValueOk returns a tuple with the UsdValue field value and a boolean to check if the value has been set.
func (StakingReward) MarshalJSON ¶
func (o StakingReward) MarshalJSON() ([]byte, error)
func (*StakingReward) SetAddressId ¶
func (o *StakingReward) SetAddressId(v string)
SetAddressId sets field value
func (*StakingReward) SetAmount ¶
func (o *StakingReward) SetAmount(v string)
SetAmount sets field value
func (*StakingReward) SetDate ¶
func (o *StakingReward) SetDate(v time.Time)
SetDate sets field value
func (*StakingReward) SetFormat ¶
func (o *StakingReward) SetFormat(v StakingRewardFormat)
SetFormat sets field value
func (*StakingReward) SetState ¶
func (o *StakingReward) SetState(v string)
SetState sets field value
func (*StakingReward) SetUsdValue ¶
func (o *StakingReward) SetUsdValue(v StakingRewardUSDValue)
SetUsdValue sets field value
func (StakingReward) ToMap ¶
func (o StakingReward) ToMap() (map[string]interface{}, error)
func (*StakingReward) UnmarshalJSON ¶
func (o *StakingReward) UnmarshalJSON(data []byte) (err error)
type StakingRewardFormat ¶
type StakingRewardFormat string
StakingRewardFormat The format in which the rewards are to be fetched i.e native or in equivalent USD
const ( STAKINGREWARDFORMAT_USD StakingRewardFormat = "usd" STAKINGREWARDFORMAT_NATIVE StakingRewardFormat = "native" )
List of StakingRewardFormat
func NewStakingRewardFormatFromValue ¶
func NewStakingRewardFormatFromValue(v string) (*StakingRewardFormat, error)
NewStakingRewardFormatFromValue returns a pointer to a valid StakingRewardFormat for the value passed as argument, or an error if the value passed is not allowed by the enum
func (StakingRewardFormat) IsValid ¶
func (v StakingRewardFormat) IsValid() bool
IsValid return true if the value is valid for the enum, false otherwise
func (StakingRewardFormat) Ptr ¶
func (v StakingRewardFormat) Ptr() *StakingRewardFormat
Ptr returns reference to StakingRewardFormat value
func (*StakingRewardFormat) UnmarshalJSON ¶
func (v *StakingRewardFormat) UnmarshalJSON(src []byte) error
type StakingRewardUSDValue ¶
type StakingRewardUSDValue struct { // The value of the reward in USD Amount string `json:"amount"` // The conversion price from native currency to USD ConversionPrice string `json:"conversion_price"` // The time of the conversion in UTC. ConversionTime time.Time `json:"conversion_time"` }
StakingRewardUSDValue The USD value of the reward
func NewStakingRewardUSDValue ¶
func NewStakingRewardUSDValue(amount string, conversionPrice string, conversionTime time.Time) *StakingRewardUSDValue
NewStakingRewardUSDValue instantiates a new StakingRewardUSDValue 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
func NewStakingRewardUSDValueWithDefaults ¶
func NewStakingRewardUSDValueWithDefaults() *StakingRewardUSDValue
NewStakingRewardUSDValueWithDefaults instantiates a new StakingRewardUSDValue 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
func (*StakingRewardUSDValue) GetAmount ¶
func (o *StakingRewardUSDValue) GetAmount() string
GetAmount returns the Amount field value
func (*StakingRewardUSDValue) GetAmountOk ¶
func (o *StakingRewardUSDValue) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*StakingRewardUSDValue) GetConversionPrice ¶
func (o *StakingRewardUSDValue) GetConversionPrice() string
GetConversionPrice returns the ConversionPrice field value
func (*StakingRewardUSDValue) GetConversionPriceOk ¶
func (o *StakingRewardUSDValue) GetConversionPriceOk() (*string, bool)
GetConversionPriceOk returns a tuple with the ConversionPrice field value and a boolean to check if the value has been set.
func (*StakingRewardUSDValue) GetConversionTime ¶
func (o *StakingRewardUSDValue) GetConversionTime() time.Time
GetConversionTime returns the ConversionTime field value
func (*StakingRewardUSDValue) GetConversionTimeOk ¶
func (o *StakingRewardUSDValue) GetConversionTimeOk() (*time.Time, bool)
GetConversionTimeOk returns a tuple with the ConversionTime field value and a boolean to check if the value has been set.
func (StakingRewardUSDValue) MarshalJSON ¶
func (o StakingRewardUSDValue) MarshalJSON() ([]byte, error)
func (*StakingRewardUSDValue) SetAmount ¶
func (o *StakingRewardUSDValue) SetAmount(v string)
SetAmount sets field value
func (*StakingRewardUSDValue) SetConversionPrice ¶
func (o *StakingRewardUSDValue) SetConversionPrice(v string)
SetConversionPrice sets field value
func (*StakingRewardUSDValue) SetConversionTime ¶
func (o *StakingRewardUSDValue) SetConversionTime(v time.Time)
SetConversionTime sets field value
func (StakingRewardUSDValue) ToMap ¶
func (o StakingRewardUSDValue) ToMap() (map[string]interface{}, error)
func (*StakingRewardUSDValue) UnmarshalJSON ¶
func (o *StakingRewardUSDValue) UnmarshalJSON(data []byte) (err error)
type TokenContractOptions ¶ added in v0.0.9
type TokenContractOptions struct { // The name of the token Name string `json:"name"` // The symbol of the token Symbol string `json:"symbol"` // The total supply of the token denominated in the whole amount of the token. TotalSupply string `json:"total_supply"` }
TokenContractOptions Options for token contract creation
func NewTokenContractOptions ¶ added in v0.0.9
func NewTokenContractOptions(name string, symbol string, totalSupply string) *TokenContractOptions
NewTokenContractOptions instantiates a new TokenContractOptions 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
func NewTokenContractOptionsWithDefaults ¶ added in v0.0.9
func NewTokenContractOptionsWithDefaults() *TokenContractOptions
NewTokenContractOptionsWithDefaults instantiates a new TokenContractOptions 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
func (*TokenContractOptions) GetName ¶ added in v0.0.9
func (o *TokenContractOptions) GetName() string
GetName returns the Name field value
func (*TokenContractOptions) GetNameOk ¶ added in v0.0.9
func (o *TokenContractOptions) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.
func (*TokenContractOptions) GetSymbol ¶ added in v0.0.9
func (o *TokenContractOptions) GetSymbol() string
GetSymbol returns the Symbol field value
func (*TokenContractOptions) GetSymbolOk ¶ added in v0.0.9
func (o *TokenContractOptions) GetSymbolOk() (*string, bool)
GetSymbolOk returns a tuple with the Symbol field value and a boolean to check if the value has been set.
func (*TokenContractOptions) GetTotalSupply ¶ added in v0.0.9
func (o *TokenContractOptions) GetTotalSupply() string
GetTotalSupply returns the TotalSupply field value
func (*TokenContractOptions) GetTotalSupplyOk ¶ added in v0.0.9
func (o *TokenContractOptions) GetTotalSupplyOk() (*string, bool)
GetTotalSupplyOk returns a tuple with the TotalSupply field value and a boolean to check if the value has been set.
func (TokenContractOptions) MarshalJSON ¶ added in v0.0.9
func (o TokenContractOptions) MarshalJSON() ([]byte, error)
func (*TokenContractOptions) SetName ¶ added in v0.0.9
func (o *TokenContractOptions) SetName(v string)
SetName sets field value
func (*TokenContractOptions) SetSymbol ¶ added in v0.0.9
func (o *TokenContractOptions) SetSymbol(v string)
SetSymbol sets field value
func (*TokenContractOptions) SetTotalSupply ¶ added in v0.0.9
func (o *TokenContractOptions) SetTotalSupply(v string)
SetTotalSupply sets field value
func (TokenContractOptions) ToMap ¶ added in v0.0.9
func (o TokenContractOptions) ToMap() (map[string]interface{}, error)
func (*TokenContractOptions) UnmarshalJSON ¶ added in v0.0.9
func (o *TokenContractOptions) UnmarshalJSON(data []byte) (err error)
type Trade ¶
type Trade struct { // The ID of the blockchain network NetworkId string `json:"network_id"` // The ID of the wallet that owns the from address WalletId string `json:"wallet_id"` // The onchain address of the sender AddressId string `json:"address_id"` // The ID of the trade TradeId string `json:"trade_id"` // The amount of the from asset to be traded (in atomic units of the from asset) FromAmount string `json:"from_amount"` FromAsset Asset `json:"from_asset"` // The amount of the to asset that will be received (in atomic units of the to asset) ToAmount string `json:"to_amount"` ToAsset Asset `json:"to_asset"` Transaction Transaction `json:"transaction"` ApproveTransaction *Transaction `json:"approve_transaction,omitempty"` }
Trade A trade of an asset to another asset
func NewTrade ¶
func NewTrade(networkId string, walletId string, addressId string, tradeId string, fromAmount string, fromAsset Asset, toAmount string, toAsset Asset, transaction Transaction) *Trade
NewTrade instantiates a new Trade 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
func NewTradeWithDefaults ¶
func NewTradeWithDefaults() *Trade
NewTradeWithDefaults instantiates a new Trade 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
func (*Trade) GetAddressId ¶
GetAddressId returns the AddressId field value
func (*Trade) GetAddressIdOk ¶
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*Trade) GetApproveTransaction ¶
func (o *Trade) GetApproveTransaction() Transaction
GetApproveTransaction returns the ApproveTransaction field value if set, zero value otherwise.
func (*Trade) GetApproveTransactionOk ¶
func (o *Trade) GetApproveTransactionOk() (*Transaction, bool)
GetApproveTransactionOk returns a tuple with the ApproveTransaction field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Trade) GetFromAmount ¶
GetFromAmount returns the FromAmount field value
func (*Trade) GetFromAmountOk ¶
GetFromAmountOk returns a tuple with the FromAmount field value and a boolean to check if the value has been set.
func (*Trade) GetFromAsset ¶
GetFromAsset returns the FromAsset field value
func (*Trade) GetFromAssetOk ¶
GetFromAssetOk returns a tuple with the FromAsset field value and a boolean to check if the value has been set.
func (*Trade) GetNetworkId ¶
GetNetworkId returns the NetworkId field value
func (*Trade) GetNetworkIdOk ¶
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*Trade) GetToAmount ¶
GetToAmount returns the ToAmount field value
func (*Trade) GetToAmountOk ¶
GetToAmountOk returns a tuple with the ToAmount field value and a boolean to check if the value has been set.
func (*Trade) GetToAsset ¶
GetToAsset returns the ToAsset field value
func (*Trade) GetToAssetOk ¶
GetToAssetOk returns a tuple with the ToAsset field value and a boolean to check if the value has been set.
func (*Trade) GetTradeId ¶
GetTradeId returns the TradeId field value
func (*Trade) GetTradeIdOk ¶
GetTradeIdOk returns a tuple with the TradeId field value and a boolean to check if the value has been set.
func (*Trade) GetTransaction ¶
func (o *Trade) GetTransaction() Transaction
GetTransaction returns the Transaction field value
func (*Trade) GetTransactionOk ¶
func (o *Trade) GetTransactionOk() (*Transaction, bool)
GetTransactionOk returns a tuple with the Transaction field value and a boolean to check if the value has been set.
func (*Trade) GetWalletId ¶
GetWalletId returns the WalletId field value
func (*Trade) GetWalletIdOk ¶
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*Trade) HasApproveTransaction ¶
HasApproveTransaction returns a boolean if a field has been set.
func (Trade) MarshalJSON ¶
func (*Trade) SetApproveTransaction ¶
func (o *Trade) SetApproveTransaction(v Transaction)
SetApproveTransaction gets a reference to the given Transaction and assigns it to the ApproveTransaction field.
func (*Trade) SetFromAmount ¶
SetFromAmount sets field value
func (*Trade) SetTransaction ¶
func (o *Trade) SetTransaction(v Transaction)
SetTransaction sets field value
func (*Trade) UnmarshalJSON ¶
type TradeList ¶
type TradeList struct { Data []Trade `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of trades for the address in the wallet. TotalCount int32 `json:"total_count"` }
TradeList
func NewTradeList ¶
NewTradeList instantiates a new TradeList 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
func NewTradeListWithDefaults ¶
func NewTradeListWithDefaults() *TradeList
NewTradeListWithDefaults instantiates a new TradeList 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
func (*TradeList) GetDataOk ¶
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*TradeList) GetHasMore ¶
GetHasMore returns the HasMore field value
func (*TradeList) GetHasMoreOk ¶
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*TradeList) GetNextPage ¶
GetNextPage returns the NextPage field value
func (*TradeList) GetNextPageOk ¶
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*TradeList) GetTotalCount ¶
GetTotalCount returns the TotalCount field value
func (*TradeList) GetTotalCountOk ¶
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (TradeList) MarshalJSON ¶
func (*TradeList) SetNextPage ¶
SetNextPage sets field value
func (*TradeList) SetTotalCount ¶
SetTotalCount sets field value
func (*TradeList) UnmarshalJSON ¶
type TradesAPI ¶
type TradesAPI interface { /* BroadcastTrade Broadcast a trade Broadcast a trade @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the trade belongs to @param tradeId The ID of the trade to broadcast @return ApiBroadcastTradeRequest */ BroadcastTrade(ctx context.Context, walletId string, addressId string, tradeId string) ApiBroadcastTradeRequest // BroadcastTradeExecute executes the request // @return Trade BroadcastTradeExecute(r ApiBroadcastTradeRequest) (*Trade, *http.Response, error) /* CreateTrade Create a new trade for an address Create a new trade @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the source address belongs to @param addressId The ID of the address to conduct the trade from @return ApiCreateTradeRequest */ CreateTrade(ctx context.Context, walletId string, addressId string) ApiCreateTradeRequest // CreateTradeExecute executes the request // @return Trade CreateTradeExecute(r ApiCreateTradeRequest) (*Trade, *http.Response, error) /* GetTrade Get a trade by ID Get a trade by ID @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the trade belongs to @param tradeId The ID of the trade to fetch @return ApiGetTradeRequest */ GetTrade(ctx context.Context, walletId string, addressId string, tradeId string) ApiGetTradeRequest // GetTradeExecute executes the request // @return Trade GetTradeExecute(r ApiGetTradeRequest) (*Trade, *http.Response, error) /* ListTrades List trades for an address. List trades for an address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address to list trades for @return ApiListTradesRequest */ ListTrades(ctx context.Context, walletId string, addressId string) ApiListTradesRequest // ListTradesExecute executes the request // @return TradeList ListTradesExecute(r ApiListTradesRequest) (*TradeList, *http.Response, error) }
type TradesAPIService ¶
type TradesAPIService service
TradesAPIService TradesAPI service
func (*TradesAPIService) BroadcastTrade ¶
func (a *TradesAPIService) BroadcastTrade(ctx context.Context, walletId string, addressId string, tradeId string) ApiBroadcastTradeRequest
BroadcastTrade Broadcast a trade
Broadcast a trade
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the trade belongs to @param tradeId The ID of the trade to broadcast @return ApiBroadcastTradeRequest
func (*TradesAPIService) BroadcastTradeExecute ¶
func (a *TradesAPIService) BroadcastTradeExecute(r ApiBroadcastTradeRequest) (*Trade, *http.Response, error)
Execute executes the request
@return Trade
func (*TradesAPIService) CreateTrade ¶
func (a *TradesAPIService) CreateTrade(ctx context.Context, walletId string, addressId string) ApiCreateTradeRequest
CreateTrade Create a new trade for an address
Create a new trade
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the source address belongs to @param addressId The ID of the address to conduct the trade from @return ApiCreateTradeRequest
func (*TradesAPIService) CreateTradeExecute ¶
func (a *TradesAPIService) CreateTradeExecute(r ApiCreateTradeRequest) (*Trade, *http.Response, error)
Execute executes the request
@return Trade
func (*TradesAPIService) GetTrade ¶
func (a *TradesAPIService) GetTrade(ctx context.Context, walletId string, addressId string, tradeId string) ApiGetTradeRequest
GetTrade Get a trade by ID
Get a trade by ID
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the trade belongs to @param tradeId The ID of the trade to fetch @return ApiGetTradeRequest
func (*TradesAPIService) GetTradeExecute ¶
func (a *TradesAPIService) GetTradeExecute(r ApiGetTradeRequest) (*Trade, *http.Response, error)
Execute executes the request
@return Trade
func (*TradesAPIService) ListTrades ¶
func (a *TradesAPIService) ListTrades(ctx context.Context, walletId string, addressId string) ApiListTradesRequest
ListTrades List trades for an address.
List trades for an address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address to list trades for @return ApiListTradesRequest
func (*TradesAPIService) ListTradesExecute ¶
func (a *TradesAPIService) ListTradesExecute(r ApiListTradesRequest) (*TradeList, *http.Response, error)
Execute executes the request
@return TradeList
type Transaction ¶
type Transaction struct { // The ID of the blockchain network. NetworkId string `json:"network_id"` // The hash of the block at which the transaction was recorded. BlockHash *string `json:"block_hash,omitempty"` // The block height at which the transaction was recorded. BlockHeight *string `json:"block_height,omitempty"` // The onchain address of the sender. FromAddressId string `json:"from_address_id"` // The onchain address of the recipient. ToAddressId *string `json:"to_address_id,omitempty"` // The unsigned payload of the transaction. This is the payload that needs to be signed by the sender. UnsignedPayload string `json:"unsigned_payload"` // The signed payload of the transaction. This is the payload that has been signed by the sender. SignedPayload *string `json:"signed_payload,omitempty"` // The hash of the transaction. TransactionHash *string `json:"transaction_hash,omitempty"` // The link to view the transaction on a block explorer. This is optional and may not be present for all transactions. TransactionLink *string `json:"transaction_link,omitempty"` // The status of the transaction. Status string `json:"status"` Content *TransactionContent `json:"content,omitempty"` }
Transaction An onchain transaction.
func NewTransaction ¶
func NewTransaction(networkId string, fromAddressId string, unsignedPayload string, status string) *Transaction
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
func NewTransactionWithDefaults ¶
func NewTransactionWithDefaults() *Transaction
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
func (*Transaction) GetBlockHash ¶ added in v0.0.9
func (o *Transaction) GetBlockHash() string
GetBlockHash returns the BlockHash field value if set, zero value otherwise.
func (*Transaction) GetBlockHashOk ¶ added in v0.0.9
func (o *Transaction) GetBlockHashOk() (*string, bool)
GetBlockHashOk returns a tuple with the BlockHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transaction) GetBlockHeight ¶ added in v0.0.9
func (o *Transaction) GetBlockHeight() string
GetBlockHeight returns the BlockHeight field value if set, zero value otherwise.
func (*Transaction) GetBlockHeightOk ¶ added in v0.0.9
func (o *Transaction) GetBlockHeightOk() (*string, bool)
GetBlockHeightOk returns a tuple with the BlockHeight field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transaction) GetContent ¶ added in v0.0.9
func (o *Transaction) GetContent() TransactionContent
GetContent returns the Content field value if set, zero value otherwise.
func (*Transaction) GetContentOk ¶ added in v0.0.9
func (o *Transaction) GetContentOk() (*TransactionContent, bool)
GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transaction) GetFromAddressId ¶
func (o *Transaction) GetFromAddressId() string
GetFromAddressId returns the FromAddressId field value
func (*Transaction) GetFromAddressIdOk ¶
func (o *Transaction) GetFromAddressIdOk() (*string, bool)
GetFromAddressIdOk returns a tuple with the FromAddressId field value and a boolean to check if the value has been set.
func (*Transaction) GetNetworkId ¶
func (o *Transaction) GetNetworkId() string
GetNetworkId returns the NetworkId field value
func (*Transaction) GetNetworkIdOk ¶
func (o *Transaction) GetNetworkIdOk() (*string, bool)
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*Transaction) GetSignedPayload ¶
func (o *Transaction) GetSignedPayload() string
GetSignedPayload returns the SignedPayload field value if set, zero value otherwise.
func (*Transaction) GetSignedPayloadOk ¶
func (o *Transaction) GetSignedPayloadOk() (*string, bool)
GetSignedPayloadOk returns a tuple with the SignedPayload field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transaction) GetStatus ¶
func (o *Transaction) GetStatus() string
GetStatus returns the Status field value
func (*Transaction) GetStatusOk ¶
func (o *Transaction) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.
func (*Transaction) GetToAddressId ¶
func (o *Transaction) GetToAddressId() string
GetToAddressId returns the ToAddressId field value if set, zero value otherwise.
func (*Transaction) GetToAddressIdOk ¶
func (o *Transaction) GetToAddressIdOk() (*string, bool)
GetToAddressIdOk returns a tuple with the ToAddressId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transaction) GetTransactionHash ¶
func (o *Transaction) GetTransactionHash() string
GetTransactionHash returns the TransactionHash field value if set, zero value otherwise.
func (*Transaction) GetTransactionHashOk ¶
func (o *Transaction) GetTransactionHashOk() (*string, bool)
GetTransactionHashOk returns a tuple with the TransactionHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transaction) GetTransactionLink ¶
func (o *Transaction) GetTransactionLink() string
GetTransactionLink returns the TransactionLink field value if set, zero value otherwise.
func (*Transaction) GetTransactionLinkOk ¶
func (o *Transaction) GetTransactionLinkOk() (*string, bool)
GetTransactionLinkOk returns a tuple with the TransactionLink field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transaction) GetUnsignedPayload ¶
func (o *Transaction) GetUnsignedPayload() string
GetUnsignedPayload returns the UnsignedPayload field value
func (*Transaction) GetUnsignedPayloadOk ¶
func (o *Transaction) GetUnsignedPayloadOk() (*string, bool)
GetUnsignedPayloadOk returns a tuple with the UnsignedPayload field value and a boolean to check if the value has been set.
func (*Transaction) HasBlockHash ¶ added in v0.0.9
func (o *Transaction) HasBlockHash() bool
HasBlockHash returns a boolean if a field has been set.
func (*Transaction) HasBlockHeight ¶ added in v0.0.9
func (o *Transaction) HasBlockHeight() bool
HasBlockHeight returns a boolean if a field has been set.
func (*Transaction) HasContent ¶ added in v0.0.9
func (o *Transaction) HasContent() bool
HasContent returns a boolean if a field has been set.
func (*Transaction) HasSignedPayload ¶
func (o *Transaction) HasSignedPayload() bool
HasSignedPayload returns a boolean if a field has been set.
func (*Transaction) HasToAddressId ¶
func (o *Transaction) HasToAddressId() bool
HasToAddressId returns a boolean if a field has been set.
func (*Transaction) HasTransactionHash ¶
func (o *Transaction) HasTransactionHash() bool
HasTransactionHash returns a boolean if a field has been set.
func (*Transaction) HasTransactionLink ¶
func (o *Transaction) HasTransactionLink() bool
HasTransactionLink returns a boolean if a field has been set.
func (Transaction) MarshalJSON ¶
func (o Transaction) MarshalJSON() ([]byte, error)
func (*Transaction) SetBlockHash ¶ added in v0.0.9
func (o *Transaction) SetBlockHash(v string)
SetBlockHash gets a reference to the given string and assigns it to the BlockHash field.
func (*Transaction) SetBlockHeight ¶ added in v0.0.9
func (o *Transaction) SetBlockHeight(v string)
SetBlockHeight gets a reference to the given string and assigns it to the BlockHeight field.
func (*Transaction) SetContent ¶ added in v0.0.9
func (o *Transaction) SetContent(v TransactionContent)
SetContent gets a reference to the given TransactionContent and assigns it to the Content field.
func (*Transaction) SetFromAddressId ¶
func (o *Transaction) SetFromAddressId(v string)
SetFromAddressId sets field value
func (*Transaction) SetNetworkId ¶
func (o *Transaction) SetNetworkId(v string)
SetNetworkId sets field value
func (*Transaction) SetSignedPayload ¶
func (o *Transaction) SetSignedPayload(v string)
SetSignedPayload gets a reference to the given string and assigns it to the SignedPayload field.
func (*Transaction) SetStatus ¶
func (o *Transaction) SetStatus(v string)
SetStatus sets field value
func (*Transaction) SetToAddressId ¶
func (o *Transaction) SetToAddressId(v string)
SetToAddressId gets a reference to the given string and assigns it to the ToAddressId field.
func (*Transaction) SetTransactionHash ¶
func (o *Transaction) SetTransactionHash(v string)
SetTransactionHash gets a reference to the given string and assigns it to the TransactionHash field.
func (*Transaction) SetTransactionLink ¶
func (o *Transaction) SetTransactionLink(v string)
SetTransactionLink gets a reference to the given string and assigns it to the TransactionLink field.
func (*Transaction) SetUnsignedPayload ¶
func (o *Transaction) SetUnsignedPayload(v string)
SetUnsignedPayload sets field value
func (Transaction) ToMap ¶
func (o Transaction) ToMap() (map[string]interface{}, error)
func (*Transaction) UnmarshalJSON ¶
func (o *Transaction) UnmarshalJSON(data []byte) (err error)
type TransactionContent ¶ added in v0.0.9
type TransactionContent struct {
EthereumTransaction *EthereumTransaction
}
TransactionContent - struct for TransactionContent
func EthereumTransactionAsTransactionContent ¶ added in v0.0.9
func EthereumTransactionAsTransactionContent(v *EthereumTransaction) TransactionContent
EthereumTransactionAsTransactionContent is a convenience function that returns EthereumTransaction wrapped in TransactionContent
func (*TransactionContent) GetActualInstance ¶ added in v0.0.9
func (obj *TransactionContent) GetActualInstance() interface{}
Get the actual instance
func (TransactionContent) MarshalJSON ¶ added in v0.0.9
func (src TransactionContent) MarshalJSON() ([]byte, error)
Marshal data from the first non-nil pointers in the struct to JSON
func (*TransactionContent) UnmarshalJSON ¶ added in v0.0.9
func (dst *TransactionContent) UnmarshalJSON(data []byte) error
Unmarshal JSON data into one of the pointers in the struct
type TransactionType ¶
type TransactionType string
TransactionType the model 'TransactionType'
const (
TRANSACTIONTYPE_TRANSFER TransactionType = "transfer"
)
List of TransactionType
func NewTransactionTypeFromValue ¶
func NewTransactionTypeFromValue(v string) (*TransactionType, error)
NewTransactionTypeFromValue returns a pointer to a valid TransactionType for the value passed as argument, or an error if the value passed is not allowed by the enum
func (TransactionType) IsValid ¶
func (v TransactionType) IsValid() bool
IsValid return true if the value is valid for the enum, false otherwise
func (TransactionType) Ptr ¶
func (v TransactionType) Ptr() *TransactionType
Ptr returns reference to TransactionType value
func (*TransactionType) UnmarshalJSON ¶
func (v *TransactionType) UnmarshalJSON(src []byte) error
type Transfer ¶
type Transfer struct { // The ID of the blockchain network NetworkId string `json:"network_id"` // The ID of the wallet that owns the from address WalletId string `json:"wallet_id"` // The onchain address of the sender AddressId string `json:"address_id"` // The onchain address of the recipient Destination string `json:"destination"` // The amount in the atomic units of the asset Amount string `json:"amount"` // The ID of the asset being transferred AssetId string `json:"asset_id"` Asset Asset `json:"asset"` // The ID of the transfer TransferId string `json:"transfer_id"` Transaction *Transaction `json:"transaction,omitempty"` SponsoredSend *SponsoredSend `json:"sponsored_send,omitempty"` // The unsigned payload of the transfer. This is the payload that needs to be signed by the sender. UnsignedPayload *string `json:"unsigned_payload,omitempty"` // The signed payload of the transfer. This is the payload that has been signed by the sender. SignedPayload *string `json:"signed_payload,omitempty"` // The hash of the transfer transaction TransactionHash *string `json:"transaction_hash,omitempty"` // The status of the transfer Status *string `json:"status,omitempty"` // Whether the transfer uses sponsored gas Gasless bool `json:"gasless"` }
Transfer A transfer of an asset from one address to another
func NewTransfer ¶
func NewTransfer(networkId string, walletId string, addressId string, destination string, amount string, assetId string, asset Asset, transferId string, gasless bool) *Transfer
NewTransfer instantiates a new Transfer 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
func NewTransferWithDefaults ¶
func NewTransferWithDefaults() *Transfer
NewTransferWithDefaults instantiates a new Transfer 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
func (*Transfer) GetAddressId ¶
GetAddressId returns the AddressId field value
func (*Transfer) GetAddressIdOk ¶
GetAddressIdOk returns a tuple with the AddressId field value and a boolean to check if the value has been set.
func (*Transfer) GetAmountOk ¶
GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.
func (*Transfer) GetAssetId ¶
GetAssetId returns the AssetId field value
func (*Transfer) GetAssetIdOk ¶
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*Transfer) GetAssetOk ¶
GetAssetOk returns a tuple with the Asset field value and a boolean to check if the value has been set.
func (*Transfer) GetDestination ¶
GetDestination returns the Destination field value
func (*Transfer) GetDestinationOk ¶
GetDestinationOk returns a tuple with the Destination field value and a boolean to check if the value has been set.
func (*Transfer) GetGasless ¶
GetGasless returns the Gasless field value
func (*Transfer) GetGaslessOk ¶
GetGaslessOk returns a tuple with the Gasless field value and a boolean to check if the value has been set.
func (*Transfer) GetNetworkId ¶
GetNetworkId returns the NetworkId field value
func (*Transfer) GetNetworkIdOk ¶
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*Transfer) GetSignedPayload ¶
GetSignedPayload returns the SignedPayload field value if set, zero value otherwise.
func (*Transfer) GetSignedPayloadOk ¶
GetSignedPayloadOk returns a tuple with the SignedPayload field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transfer) GetSponsoredSend ¶
func (o *Transfer) GetSponsoredSend() SponsoredSend
GetSponsoredSend returns the SponsoredSend field value if set, zero value otherwise.
func (*Transfer) GetSponsoredSendOk ¶
func (o *Transfer) GetSponsoredSendOk() (*SponsoredSend, bool)
GetSponsoredSendOk returns a tuple with the SponsoredSend field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transfer) GetStatusOk ¶
GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transfer) GetTransaction ¶
func (o *Transfer) GetTransaction() Transaction
GetTransaction returns the Transaction field value if set, zero value otherwise.
func (*Transfer) GetTransactionHash ¶
GetTransactionHash returns the TransactionHash field value if set, zero value otherwise.
func (*Transfer) GetTransactionHashOk ¶
GetTransactionHashOk returns a tuple with the TransactionHash field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transfer) GetTransactionOk ¶
func (o *Transfer) GetTransactionOk() (*Transaction, bool)
GetTransactionOk returns a tuple with the Transaction field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transfer) GetTransferId ¶
GetTransferId returns the TransferId field value
func (*Transfer) GetTransferIdOk ¶
GetTransferIdOk returns a tuple with the TransferId field value and a boolean to check if the value has been set.
func (*Transfer) GetUnsignedPayload ¶
GetUnsignedPayload returns the UnsignedPayload field value if set, zero value otherwise.
func (*Transfer) GetUnsignedPayloadOk ¶
GetUnsignedPayloadOk returns a tuple with the UnsignedPayload field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Transfer) GetWalletId ¶
GetWalletId returns the WalletId field value
func (*Transfer) GetWalletIdOk ¶
GetWalletIdOk returns a tuple with the WalletId field value and a boolean to check if the value has been set.
func (*Transfer) HasSignedPayload ¶
HasSignedPayload returns a boolean if a field has been set.
func (*Transfer) HasSponsoredSend ¶
HasSponsoredSend returns a boolean if a field has been set.
func (*Transfer) HasTransaction ¶
HasTransaction returns a boolean if a field has been set.
func (*Transfer) HasTransactionHash ¶
HasTransactionHash returns a boolean if a field has been set.
func (*Transfer) HasUnsignedPayload ¶
HasUnsignedPayload returns a boolean if a field has been set.
func (Transfer) MarshalJSON ¶
func (*Transfer) SetAddressId ¶
SetAddressId sets field value
func (*Transfer) SetDestination ¶
SetDestination sets field value
func (*Transfer) SetNetworkId ¶
SetNetworkId sets field value
func (*Transfer) SetSignedPayload ¶
SetSignedPayload gets a reference to the given string and assigns it to the SignedPayload field.
func (*Transfer) SetSponsoredSend ¶
func (o *Transfer) SetSponsoredSend(v SponsoredSend)
SetSponsoredSend gets a reference to the given SponsoredSend and assigns it to the SponsoredSend field.
func (*Transfer) SetStatus ¶
SetStatus gets a reference to the given string and assigns it to the Status field.
func (*Transfer) SetTransaction ¶
func (o *Transfer) SetTransaction(v Transaction)
SetTransaction gets a reference to the given Transaction and assigns it to the Transaction field.
func (*Transfer) SetTransactionHash ¶
SetTransactionHash gets a reference to the given string and assigns it to the TransactionHash field.
func (*Transfer) SetTransferId ¶
SetTransferId sets field value
func (*Transfer) SetUnsignedPayload ¶
SetUnsignedPayload gets a reference to the given string and assigns it to the UnsignedPayload field.
func (*Transfer) SetWalletId ¶
SetWalletId sets field value
func (*Transfer) UnmarshalJSON ¶
type TransferList ¶
type TransferList struct { Data []Transfer `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of transfers for the address in the wallet. TotalCount int32 `json:"total_count"` }
TransferList
func NewTransferList ¶
func NewTransferList(data []Transfer, hasMore bool, nextPage string, totalCount int32) *TransferList
NewTransferList instantiates a new TransferList 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
func NewTransferListWithDefaults ¶
func NewTransferListWithDefaults() *TransferList
NewTransferListWithDefaults instantiates a new TransferList 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
func (*TransferList) GetData ¶
func (o *TransferList) GetData() []Transfer
GetData returns the Data field value
func (*TransferList) GetDataOk ¶
func (o *TransferList) GetDataOk() ([]Transfer, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*TransferList) GetHasMore ¶
func (o *TransferList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*TransferList) GetHasMoreOk ¶
func (o *TransferList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*TransferList) GetNextPage ¶
func (o *TransferList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*TransferList) GetNextPageOk ¶
func (o *TransferList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*TransferList) GetTotalCount ¶
func (o *TransferList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*TransferList) GetTotalCountOk ¶
func (o *TransferList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (TransferList) MarshalJSON ¶
func (o TransferList) MarshalJSON() ([]byte, error)
func (*TransferList) SetData ¶
func (o *TransferList) SetData(v []Transfer)
SetData sets field value
func (*TransferList) SetHasMore ¶
func (o *TransferList) SetHasMore(v bool)
SetHasMore sets field value
func (*TransferList) SetNextPage ¶
func (o *TransferList) SetNextPage(v string)
SetNextPage sets field value
func (*TransferList) SetTotalCount ¶
func (o *TransferList) SetTotalCount(v int32)
SetTotalCount sets field value
func (TransferList) ToMap ¶
func (o TransferList) ToMap() (map[string]interface{}, error)
func (*TransferList) UnmarshalJSON ¶
func (o *TransferList) UnmarshalJSON(data []byte) (err error)
type TransfersAPI ¶
type TransfersAPI interface { /* BroadcastTransfer Broadcast a transfer Broadcast a transfer @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the transfer belongs to @param transferId The ID of the transfer to broadcast @return ApiBroadcastTransferRequest */ BroadcastTransfer(ctx context.Context, walletId string, addressId string, transferId string) ApiBroadcastTransferRequest // BroadcastTransferExecute executes the request // @return Transfer BroadcastTransferExecute(r ApiBroadcastTransferRequest) (*Transfer, *http.Response, error) /* CreateTransfer Create a new transfer for an address Create a new transfer @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the source address belongs to @param addressId The ID of the address to transfer from @return ApiCreateTransferRequest */ CreateTransfer(ctx context.Context, walletId string, addressId string) ApiCreateTransferRequest // CreateTransferExecute executes the request // @return Transfer CreateTransferExecute(r ApiCreateTransferRequest) (*Transfer, *http.Response, error) /* GetTransfer Get a transfer by ID Get a transfer by ID @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the transfer belongs to @param transferId The ID of the transfer to fetch @return ApiGetTransferRequest */ GetTransfer(ctx context.Context, walletId string, addressId string, transferId string) ApiGetTransferRequest // GetTransferExecute executes the request // @return Transfer GetTransferExecute(r ApiGetTransferRequest) (*Transfer, *http.Response, error) /* ListTransfers List transfers for an address. List transfers for an address. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address to list transfers for @return ApiListTransfersRequest */ ListTransfers(ctx context.Context, walletId string, addressId string) ApiListTransfersRequest // ListTransfersExecute executes the request // @return TransferList ListTransfersExecute(r ApiListTransfersRequest) (*TransferList, *http.Response, error) }
type TransfersAPIService ¶
type TransfersAPIService service
TransfersAPIService TransfersAPI service
func (*TransfersAPIService) BroadcastTransfer ¶
func (a *TransfersAPIService) BroadcastTransfer(ctx context.Context, walletId string, addressId string, transferId string) ApiBroadcastTransferRequest
BroadcastTransfer Broadcast a transfer
Broadcast a transfer
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the transfer belongs to @param transferId The ID of the transfer to broadcast @return ApiBroadcastTransferRequest
func (*TransfersAPIService) BroadcastTransferExecute ¶
func (a *TransfersAPIService) BroadcastTransferExecute(r ApiBroadcastTransferRequest) (*Transfer, *http.Response, error)
Execute executes the request
@return Transfer
func (*TransfersAPIService) CreateTransfer ¶
func (a *TransfersAPIService) CreateTransfer(ctx context.Context, walletId string, addressId string) ApiCreateTransferRequest
CreateTransfer Create a new transfer for an address
Create a new transfer
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the source address belongs to @param addressId The ID of the address to transfer from @return ApiCreateTransferRequest
func (*TransfersAPIService) CreateTransferExecute ¶
func (a *TransfersAPIService) CreateTransferExecute(r ApiCreateTransferRequest) (*Transfer, *http.Response, error)
Execute executes the request
@return Transfer
func (*TransfersAPIService) GetTransfer ¶
func (a *TransfersAPIService) GetTransfer(ctx context.Context, walletId string, addressId string, transferId string) ApiGetTransferRequest
GetTransfer Get a transfer by ID
Get a transfer by ID
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address the transfer belongs to @param transferId The ID of the transfer to fetch @return ApiGetTransferRequest
func (*TransfersAPIService) GetTransferExecute ¶
func (a *TransfersAPIService) GetTransferExecute(r ApiGetTransferRequest) (*Transfer, *http.Response, error)
Execute executes the request
@return Transfer
func (*TransfersAPIService) ListTransfers ¶
func (a *TransfersAPIService) ListTransfers(ctx context.Context, walletId string, addressId string) ApiListTransfersRequest
ListTransfers List transfers for an address.
List transfers for an address.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address to list transfers for @return ApiListTransfersRequest
func (*TransfersAPIService) ListTransfersExecute ¶
func (a *TransfersAPIService) ListTransfersExecute(r ApiListTransfersRequest) (*TransferList, *http.Response, error)
Execute executes the request
@return TransferList
type UpdateWebhookRequest ¶
type UpdateWebhookRequest struct { EventTypeFilter *WebhookEventTypeFilter `json:"event_type_filter,omitempty"` // Webhook will monitor all events that matches any one of the event filters. EventFilters []WebhookEventFilter `json:"event_filters,omitempty"` // The Webhook uri that updates to NotificationUri string `json:"notification_uri"` }
UpdateWebhookRequest struct for UpdateWebhookRequest
func NewUpdateWebhookRequest ¶
func NewUpdateWebhookRequest(notificationUri string) *UpdateWebhookRequest
NewUpdateWebhookRequest instantiates a new UpdateWebhookRequest 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
func NewUpdateWebhookRequestWithDefaults ¶
func NewUpdateWebhookRequestWithDefaults() *UpdateWebhookRequest
NewUpdateWebhookRequestWithDefaults instantiates a new UpdateWebhookRequest 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
func (*UpdateWebhookRequest) GetEventFilters ¶
func (o *UpdateWebhookRequest) GetEventFilters() []WebhookEventFilter
GetEventFilters returns the EventFilters field value if set, zero value otherwise.
func (*UpdateWebhookRequest) GetEventFiltersOk ¶
func (o *UpdateWebhookRequest) GetEventFiltersOk() ([]WebhookEventFilter, bool)
GetEventFiltersOk returns a tuple with the EventFilters field value if set, nil otherwise and a boolean to check if the value has been set.
func (*UpdateWebhookRequest) GetEventTypeFilter ¶ added in v0.0.9
func (o *UpdateWebhookRequest) GetEventTypeFilter() WebhookEventTypeFilter
GetEventTypeFilter returns the EventTypeFilter field value if set, zero value otherwise.
func (*UpdateWebhookRequest) GetEventTypeFilterOk ¶ added in v0.0.9
func (o *UpdateWebhookRequest) GetEventTypeFilterOk() (*WebhookEventTypeFilter, bool)
GetEventTypeFilterOk returns a tuple with the EventTypeFilter field value if set, nil otherwise and a boolean to check if the value has been set.
func (*UpdateWebhookRequest) GetNotificationUri ¶
func (o *UpdateWebhookRequest) GetNotificationUri() string
GetNotificationUri returns the NotificationUri field value
func (*UpdateWebhookRequest) GetNotificationUriOk ¶
func (o *UpdateWebhookRequest) GetNotificationUriOk() (*string, bool)
GetNotificationUriOk returns a tuple with the NotificationUri field value and a boolean to check if the value has been set.
func (*UpdateWebhookRequest) HasEventFilters ¶ added in v0.0.9
func (o *UpdateWebhookRequest) HasEventFilters() bool
HasEventFilters returns a boolean if a field has been set.
func (*UpdateWebhookRequest) HasEventTypeFilter ¶ added in v0.0.9
func (o *UpdateWebhookRequest) HasEventTypeFilter() bool
HasEventTypeFilter returns a boolean if a field has been set.
func (UpdateWebhookRequest) MarshalJSON ¶
func (o UpdateWebhookRequest) MarshalJSON() ([]byte, error)
func (*UpdateWebhookRequest) SetEventFilters ¶
func (o *UpdateWebhookRequest) SetEventFilters(v []WebhookEventFilter)
SetEventFilters gets a reference to the given []WebhookEventFilter and assigns it to the EventFilters field.
func (*UpdateWebhookRequest) SetEventTypeFilter ¶ added in v0.0.9
func (o *UpdateWebhookRequest) SetEventTypeFilter(v WebhookEventTypeFilter)
SetEventTypeFilter gets a reference to the given WebhookEventTypeFilter and assigns it to the EventTypeFilter field.
func (*UpdateWebhookRequest) SetNotificationUri ¶
func (o *UpdateWebhookRequest) SetNotificationUri(v string)
SetNotificationUri sets field value
func (UpdateWebhookRequest) ToMap ¶
func (o UpdateWebhookRequest) ToMap() (map[string]interface{}, error)
func (*UpdateWebhookRequest) UnmarshalJSON ¶
func (o *UpdateWebhookRequest) UnmarshalJSON(data []byte) (err error)
type User ¶
type User struct { // The ID of the user Id string `json:"id"` DisplayName *string `json:"display_name,omitempty"` }
User struct for User
func NewUser ¶
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
func NewUserWithDefaults ¶
func NewUserWithDefaults() *User
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
func (*User) GetDisplayName ¶
GetDisplayName returns the DisplayName field value if set, zero value otherwise.
func (*User) GetDisplayNameOk ¶
GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.
func (*User) GetIdOk ¶
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*User) HasDisplayName ¶
HasDisplayName returns a boolean if a field has been set.
func (User) MarshalJSON ¶
func (*User) SetDisplayName ¶
SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.
func (*User) UnmarshalJSON ¶
type UsersAPI ¶
type UsersAPI interface { /* GetCurrentUser Get current user Get current user @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiGetCurrentUserRequest */ GetCurrentUser(ctx context.Context) ApiGetCurrentUserRequest // GetCurrentUserExecute executes the request // @return User GetCurrentUserExecute(r ApiGetCurrentUserRequest) (*User, *http.Response, error) }
type UsersAPIService ¶
type UsersAPIService service
UsersAPIService UsersAPI service
func (*UsersAPIService) GetCurrentUser ¶
func (a *UsersAPIService) GetCurrentUser(ctx context.Context) ApiGetCurrentUserRequest
GetCurrentUser Get current user
Get current user
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiGetCurrentUserRequest
func (*UsersAPIService) GetCurrentUserExecute ¶
func (a *UsersAPIService) GetCurrentUserExecute(r ApiGetCurrentUserRequest) (*User, *http.Response, error)
Execute executes the request
@return User
type Validator ¶
type Validator struct { // The publicly identifiable unique id of the validator. This can be the public key for Ethereum validators and maybe an address for some other network. ValidatorId string `json:"validator_id"` // The ID of the blockchain network to which the Validator belongs. NetworkId string `json:"network_id"` // The ID of the asset that the validator helps stake. AssetId string `json:"asset_id"` Status ValidatorStatus `json:"status"` Details *ValidatorDetails `json:"details,omitempty"` }
Validator A validator onchain.
func NewValidator ¶
func NewValidator(validatorId string, networkId string, assetId string, status ValidatorStatus) *Validator
NewValidator instantiates a new Validator 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
func NewValidatorWithDefaults ¶
func NewValidatorWithDefaults() *Validator
NewValidatorWithDefaults instantiates a new Validator 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
func (*Validator) GetAssetId ¶
GetAssetId returns the AssetId field value
func (*Validator) GetAssetIdOk ¶
GetAssetIdOk returns a tuple with the AssetId field value and a boolean to check if the value has been set.
func (*Validator) GetDetails ¶
func (o *Validator) GetDetails() ValidatorDetails
GetDetails returns the Details field value if set, zero value otherwise.
func (*Validator) GetDetailsOk ¶
func (o *Validator) GetDetailsOk() (*ValidatorDetails, bool)
GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Validator) GetNetworkId ¶
GetNetworkId returns the NetworkId field value
func (*Validator) GetNetworkIdOk ¶
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*Validator) GetStatus ¶
func (o *Validator) GetStatus() ValidatorStatus
GetStatus returns the Status field value
func (*Validator) GetStatusOk ¶
func (o *Validator) GetStatusOk() (*ValidatorStatus, bool)
GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.
func (*Validator) GetValidatorId ¶
GetValidatorId returns the ValidatorId field value
func (*Validator) GetValidatorIdOk ¶
GetValidatorIdOk returns a tuple with the ValidatorId field value and a boolean to check if the value has been set.
func (*Validator) HasDetails ¶
HasDetails returns a boolean if a field has been set.
func (Validator) MarshalJSON ¶
func (*Validator) SetDetails ¶
func (o *Validator) SetDetails(v ValidatorDetails)
SetDetails gets a reference to the given ValidatorDetails and assigns it to the Details field.
func (*Validator) SetNetworkId ¶
SetNetworkId sets field value
func (*Validator) SetStatus ¶
func (o *Validator) SetStatus(v ValidatorStatus)
SetStatus sets field value
func (*Validator) SetValidatorId ¶
SetValidatorId sets field value
func (*Validator) UnmarshalJSON ¶
type ValidatorDetails ¶
type ValidatorDetails struct {
EthereumValidatorMetadata *EthereumValidatorMetadata
}
ValidatorDetails - struct for ValidatorDetails
func EthereumValidatorMetadataAsValidatorDetails ¶
func EthereumValidatorMetadataAsValidatorDetails(v *EthereumValidatorMetadata) ValidatorDetails
EthereumValidatorMetadataAsValidatorDetails is a convenience function that returns EthereumValidatorMetadata wrapped in ValidatorDetails
func (*ValidatorDetails) GetActualInstance ¶
func (obj *ValidatorDetails) GetActualInstance() interface{}
Get the actual instance
func (ValidatorDetails) MarshalJSON ¶
func (src ValidatorDetails) MarshalJSON() ([]byte, error)
Marshal data from the first non-nil pointers in the struct to JSON
func (*ValidatorDetails) UnmarshalJSON ¶
func (dst *ValidatorDetails) UnmarshalJSON(data []byte) error
Unmarshal JSON data into one of the pointers in the struct
type ValidatorList ¶
type ValidatorList struct { Data []Validator `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` }
ValidatorList
func NewValidatorList ¶
func NewValidatorList(data []Validator, hasMore bool, nextPage string) *ValidatorList
NewValidatorList instantiates a new ValidatorList 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
func NewValidatorListWithDefaults ¶
func NewValidatorListWithDefaults() *ValidatorList
NewValidatorListWithDefaults instantiates a new ValidatorList 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
func (*ValidatorList) GetData ¶
func (o *ValidatorList) GetData() []Validator
GetData returns the Data field value
func (*ValidatorList) GetDataOk ¶
func (o *ValidatorList) GetDataOk() ([]Validator, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*ValidatorList) GetHasMore ¶
func (o *ValidatorList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*ValidatorList) GetHasMoreOk ¶
func (o *ValidatorList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*ValidatorList) GetNextPage ¶
func (o *ValidatorList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*ValidatorList) GetNextPageOk ¶
func (o *ValidatorList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (ValidatorList) MarshalJSON ¶
func (o ValidatorList) MarshalJSON() ([]byte, error)
func (*ValidatorList) SetData ¶
func (o *ValidatorList) SetData(v []Validator)
SetData sets field value
func (*ValidatorList) SetHasMore ¶
func (o *ValidatorList) SetHasMore(v bool)
SetHasMore sets field value
func (*ValidatorList) SetNextPage ¶
func (o *ValidatorList) SetNextPage(v string)
SetNextPage sets field value
func (ValidatorList) ToMap ¶
func (o ValidatorList) ToMap() (map[string]interface{}, error)
func (*ValidatorList) UnmarshalJSON ¶
func (o *ValidatorList) UnmarshalJSON(data []byte) (err error)
type ValidatorStatus ¶
type ValidatorStatus string
ValidatorStatus The status of the validator.
const ( VALIDATORSTATUS_UNKNOWN ValidatorStatus = "unknown" VALIDATORSTATUS_PROVISIONING ValidatorStatus = "provisioning" VALIDATORSTATUS_PROVISIONED ValidatorStatus = "provisioned" VALIDATORSTATUS_DEPOSITED ValidatorStatus = "deposited" VALIDATORSTATUS_PENDING_ACTIVATION ValidatorStatus = "pending_activation" VALIDATORSTATUS_ACTIVE ValidatorStatus = "active" VALIDATORSTATUS_EXITING ValidatorStatus = "exiting" VALIDATORSTATUS_EXITED ValidatorStatus = "exited" VALIDATORSTATUS_WITHDRAWAL_AVAILABLE ValidatorStatus = "withdrawal_available" VALIDATORSTATUS_WITHDRAWAL_COMPLETE ValidatorStatus = "withdrawal_complete" VALIDATORSTATUS_ACTIVE_SLASHED ValidatorStatus = "active_slashed" VALIDATORSTATUS_EXITED_SLASHED ValidatorStatus = "exited_slashed" VALIDATORSTATUS_REAPED ValidatorStatus = "reaped" )
List of ValidatorStatus
func NewValidatorStatusFromValue ¶
func NewValidatorStatusFromValue(v string) (*ValidatorStatus, error)
NewValidatorStatusFromValue returns a pointer to a valid ValidatorStatus for the value passed as argument, or an error if the value passed is not allowed by the enum
func (ValidatorStatus) IsValid ¶
func (v ValidatorStatus) IsValid() bool
IsValid return true if the value is valid for the enum, false otherwise
func (ValidatorStatus) Ptr ¶
func (v ValidatorStatus) Ptr() *ValidatorStatus
Ptr returns reference to ValidatorStatus value
func (*ValidatorStatus) UnmarshalJSON ¶
func (v *ValidatorStatus) UnmarshalJSON(src []byte) error
type ValidatorsAPI ¶
type ValidatorsAPI interface { /* GetValidator Get a validator belonging to the CDP project Get a validator belonging to the user for a given network, asset and id. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network. @param assetId The symbol of the asset to get the validator for. @param validatorId The unique id of the validator to fetch details for. @return ApiGetValidatorRequest */ GetValidator(ctx context.Context, networkId string, assetId string, validatorId string) ApiGetValidatorRequest // GetValidatorExecute executes the request // @return Validator GetValidatorExecute(r ApiGetValidatorRequest) (*Validator, *http.Response, error) /* ListValidators List validators belonging to the CDP project List validators belonging to the user for a given network and asset. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network. @param assetId The symbol of the asset to get the validators for. @return ApiListValidatorsRequest */ ListValidators(ctx context.Context, networkId string, assetId string) ApiListValidatorsRequest // ListValidatorsExecute executes the request // @return ValidatorList ListValidatorsExecute(r ApiListValidatorsRequest) (*ValidatorList, *http.Response, error) }
type ValidatorsAPIService ¶
type ValidatorsAPIService service
ValidatorsAPIService ValidatorsAPI service
func (*ValidatorsAPIService) GetValidator ¶
func (a *ValidatorsAPIService) GetValidator(ctx context.Context, networkId string, assetId string, validatorId string) ApiGetValidatorRequest
GetValidator Get a validator belonging to the CDP project
Get a validator belonging to the user for a given network, asset and id.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network. @param assetId The symbol of the asset to get the validator for. @param validatorId The unique id of the validator to fetch details for. @return ApiGetValidatorRequest
func (*ValidatorsAPIService) GetValidatorExecute ¶
func (a *ValidatorsAPIService) GetValidatorExecute(r ApiGetValidatorRequest) (*Validator, *http.Response, error)
Execute executes the request
@return Validator
func (*ValidatorsAPIService) ListValidators ¶
func (a *ValidatorsAPIService) ListValidators(ctx context.Context, networkId string, assetId string) ApiListValidatorsRequest
ListValidators List validators belonging to the CDP project
List validators belonging to the user for a given network and asset.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param networkId The ID of the blockchain network. @param assetId The symbol of the asset to get the validators for. @return ApiListValidatorsRequest
func (*ValidatorsAPIService) ListValidatorsExecute ¶
func (a *ValidatorsAPIService) ListValidatorsExecute(r ApiListValidatorsRequest) (*ValidatorList, *http.Response, error)
Execute executes the request
@return ValidatorList
type Wallet ¶
type Wallet struct { // The server-assigned ID for the wallet. Id string `json:"id"` // The ID of the blockchain network NetworkId string `json:"network_id"` DefaultAddress *Address `json:"default_address,omitempty"` FeatureSet FeatureSet `json:"feature_set"` // The status of the Server-Signer for the wallet if present. ServerSignerStatus *string `json:"server_signer_status,omitempty"` }
Wallet struct for Wallet
func NewWallet ¶
func NewWallet(id string, networkId string, featureSet FeatureSet) *Wallet
NewWallet instantiates a new Wallet 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
func NewWalletWithDefaults ¶
func NewWalletWithDefaults() *Wallet
NewWalletWithDefaults instantiates a new Wallet 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
func (*Wallet) GetDefaultAddress ¶
GetDefaultAddress returns the DefaultAddress field value if set, zero value otherwise.
func (*Wallet) GetDefaultAddressOk ¶
GetDefaultAddressOk returns a tuple with the DefaultAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Wallet) GetFeatureSet ¶
func (o *Wallet) GetFeatureSet() FeatureSet
GetFeatureSet returns the FeatureSet field value
func (*Wallet) GetFeatureSetOk ¶
func (o *Wallet) GetFeatureSetOk() (*FeatureSet, bool)
GetFeatureSetOk returns a tuple with the FeatureSet field value and a boolean to check if the value has been set.
func (*Wallet) GetIdOk ¶
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*Wallet) GetNetworkId ¶
GetNetworkId returns the NetworkId field value
func (*Wallet) GetNetworkIdOk ¶
GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.
func (*Wallet) GetServerSignerStatus ¶
GetServerSignerStatus returns the ServerSignerStatus field value if set, zero value otherwise.
func (*Wallet) GetServerSignerStatusOk ¶
GetServerSignerStatusOk returns a tuple with the ServerSignerStatus field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Wallet) HasDefaultAddress ¶
HasDefaultAddress returns a boolean if a field has been set.
func (*Wallet) HasServerSignerStatus ¶
HasServerSignerStatus returns a boolean if a field has been set.
func (Wallet) MarshalJSON ¶
func (*Wallet) SetDefaultAddress ¶
SetDefaultAddress gets a reference to the given Address and assigns it to the DefaultAddress field.
func (*Wallet) SetFeatureSet ¶
func (o *Wallet) SetFeatureSet(v FeatureSet)
SetFeatureSet sets field value
func (*Wallet) SetServerSignerStatus ¶
SetServerSignerStatus gets a reference to the given string and assigns it to the ServerSignerStatus field.
func (*Wallet) UnmarshalJSON ¶
type WalletList ¶
type WalletList struct { Data []Wallet `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore bool `json:"has_more"` // The page token to be used to fetch the next page. NextPage string `json:"next_page"` // The total number of wallets TotalCount int32 `json:"total_count"` }
WalletList Paginated list of wallets
func NewWalletList ¶
func NewWalletList(data []Wallet, hasMore bool, nextPage string, totalCount int32) *WalletList
NewWalletList instantiates a new WalletList 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
func NewWalletListWithDefaults ¶
func NewWalletListWithDefaults() *WalletList
NewWalletListWithDefaults instantiates a new WalletList 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
func (*WalletList) GetData ¶
func (o *WalletList) GetData() []Wallet
GetData returns the Data field value
func (*WalletList) GetDataOk ¶
func (o *WalletList) GetDataOk() ([]Wallet, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*WalletList) GetHasMore ¶
func (o *WalletList) GetHasMore() bool
GetHasMore returns the HasMore field value
func (*WalletList) GetHasMoreOk ¶
func (o *WalletList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value and a boolean to check if the value has been set.
func (*WalletList) GetNextPage ¶
func (o *WalletList) GetNextPage() string
GetNextPage returns the NextPage field value
func (*WalletList) GetNextPageOk ¶
func (o *WalletList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value and a boolean to check if the value has been set.
func (*WalletList) GetTotalCount ¶
func (o *WalletList) GetTotalCount() int32
GetTotalCount returns the TotalCount field value
func (*WalletList) GetTotalCountOk ¶
func (o *WalletList) GetTotalCountOk() (*int32, bool)
GetTotalCountOk returns a tuple with the TotalCount field value and a boolean to check if the value has been set.
func (WalletList) MarshalJSON ¶
func (o WalletList) MarshalJSON() ([]byte, error)
func (*WalletList) SetNextPage ¶
func (o *WalletList) SetNextPage(v string)
SetNextPage sets field value
func (*WalletList) SetTotalCount ¶
func (o *WalletList) SetTotalCount(v int32)
SetTotalCount sets field value
func (WalletList) ToMap ¶
func (o WalletList) ToMap() (map[string]interface{}, error)
func (*WalletList) UnmarshalJSON ¶
func (o *WalletList) UnmarshalJSON(data []byte) (err error)
type WalletStakeAPI ¶
type WalletStakeAPI interface { /* BroadcastStakingOperation Broadcast a staking operation Broadcast a staking operation. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address the staking operation belongs to. @param stakingOperationId The ID of the staking operation to broadcast. @return ApiBroadcastStakingOperationRequest */ BroadcastStakingOperation(ctx context.Context, walletId string, addressId string, stakingOperationId string) ApiBroadcastStakingOperationRequest // BroadcastStakingOperationExecute executes the request // @return StakingOperation BroadcastStakingOperationExecute(r ApiBroadcastStakingOperationRequest) (*StakingOperation, *http.Response, error) /* CreateStakingOperation Create a new staking operation for an address Create a new staking operation. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to create the staking operation for. @return ApiCreateStakingOperationRequest */ CreateStakingOperation(ctx context.Context, walletId string, addressId string) ApiCreateStakingOperationRequest // CreateStakingOperationExecute executes the request // @return StakingOperation CreateStakingOperationExecute(r ApiCreateStakingOperationRequest) (*StakingOperation, *http.Response, error) /* GetStakingOperation Get the latest state of a staking operation Get the latest state of a staking operation. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address to fetch the staking operation for. @param stakingOperationId The ID of the staking operation. @return ApiGetStakingOperationRequest */ GetStakingOperation(ctx context.Context, walletId string, addressId string, stakingOperationId string) ApiGetStakingOperationRequest // GetStakingOperationExecute executes the request // @return StakingOperation GetStakingOperationExecute(r ApiGetStakingOperationRequest) (*StakingOperation, *http.Response, error) }
type WalletStakeAPIService ¶
type WalletStakeAPIService service
WalletStakeAPIService WalletStakeAPI service
func (*WalletStakeAPIService) BroadcastStakingOperation ¶
func (a *WalletStakeAPIService) BroadcastStakingOperation(ctx context.Context, walletId string, addressId string, stakingOperationId string) ApiBroadcastStakingOperationRequest
BroadcastStakingOperation Broadcast a staking operation
Broadcast a staking operation.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address the staking operation belongs to. @param stakingOperationId The ID of the staking operation to broadcast. @return ApiBroadcastStakingOperationRequest
func (*WalletStakeAPIService) BroadcastStakingOperationExecute ¶
func (a *WalletStakeAPIService) BroadcastStakingOperationExecute(r ApiBroadcastStakingOperationRequest) (*StakingOperation, *http.Response, error)
Execute executes the request
@return StakingOperation
func (*WalletStakeAPIService) CreateStakingOperation ¶
func (a *WalletStakeAPIService) CreateStakingOperation(ctx context.Context, walletId string, addressId string) ApiCreateStakingOperationRequest
CreateStakingOperation Create a new staking operation for an address
Create a new staking operation.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to. @param addressId The ID of the address to create the staking operation for. @return ApiCreateStakingOperationRequest
func (*WalletStakeAPIService) CreateStakingOperationExecute ¶
func (a *WalletStakeAPIService) CreateStakingOperationExecute(r ApiCreateStakingOperationRequest) (*StakingOperation, *http.Response, error)
Execute executes the request
@return StakingOperation
func (*WalletStakeAPIService) GetStakingOperation ¶
func (a *WalletStakeAPIService) GetStakingOperation(ctx context.Context, walletId string, addressId string, stakingOperationId string) ApiGetStakingOperationRequest
GetStakingOperation Get the latest state of a staking operation
Get the latest state of a staking operation.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet the address belongs to @param addressId The ID of the address to fetch the staking operation for. @param stakingOperationId The ID of the staking operation. @return ApiGetStakingOperationRequest
func (*WalletStakeAPIService) GetStakingOperationExecute ¶
func (a *WalletStakeAPIService) GetStakingOperationExecute(r ApiGetStakingOperationRequest) (*StakingOperation, *http.Response, error)
Execute executes the request
@return StakingOperation
type WalletsAPI ¶
type WalletsAPI interface { /* CreateWallet Create a new wallet Create a new wallet scoped to the user. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiCreateWalletRequest */ CreateWallet(ctx context.Context) ApiCreateWalletRequest // CreateWalletExecute executes the request // @return Wallet CreateWalletExecute(r ApiCreateWalletRequest) (*Wallet, *http.Response, error) /* GetWallet Get wallet by ID Get wallet @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch @return ApiGetWalletRequest */ GetWallet(ctx context.Context, walletId string) ApiGetWalletRequest // GetWalletExecute executes the request // @return Wallet GetWalletExecute(r ApiGetWalletRequest) (*Wallet, *http.Response, error) /* GetWalletBalance Get the balance of an asset in the wallet Get the aggregated balance of an asset across all of the addresses in the wallet. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balance for @param assetId The symbol of the asset to fetch the balance for @return ApiGetWalletBalanceRequest */ GetWalletBalance(ctx context.Context, walletId string, assetId string) ApiGetWalletBalanceRequest // GetWalletBalanceExecute executes the request // @return Balance GetWalletBalanceExecute(r ApiGetWalletBalanceRequest) (*Balance, *http.Response, error) /* ListWalletBalances List wallet balances List the balances of all of the addresses in the wallet aggregated by asset. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balances for @return ApiListWalletBalancesRequest */ ListWalletBalances(ctx context.Context, walletId string) ApiListWalletBalancesRequest // ListWalletBalancesExecute executes the request // @return AddressBalanceList ListWalletBalancesExecute(r ApiListWalletBalancesRequest) (*AddressBalanceList, *http.Response, error) /* ListWallets List wallets List wallets belonging to the user. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiListWalletsRequest */ ListWallets(ctx context.Context) ApiListWalletsRequest // ListWalletsExecute executes the request // @return WalletList ListWalletsExecute(r ApiListWalletsRequest) (*WalletList, *http.Response, error) }
type WalletsAPIService ¶
type WalletsAPIService service
WalletsAPIService WalletsAPI service
func (*WalletsAPIService) CreateWallet ¶
func (a *WalletsAPIService) CreateWallet(ctx context.Context) ApiCreateWalletRequest
CreateWallet Create a new wallet
Create a new wallet scoped to the user.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiCreateWalletRequest
func (*WalletsAPIService) CreateWalletExecute ¶
func (a *WalletsAPIService) CreateWalletExecute(r ApiCreateWalletRequest) (*Wallet, *http.Response, error)
Execute executes the request
@return Wallet
func (*WalletsAPIService) GetWallet ¶
func (a *WalletsAPIService) GetWallet(ctx context.Context, walletId string) ApiGetWalletRequest
GetWallet Get wallet by ID
Get wallet
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch @return ApiGetWalletRequest
func (*WalletsAPIService) GetWalletBalance ¶
func (a *WalletsAPIService) GetWalletBalance(ctx context.Context, walletId string, assetId string) ApiGetWalletBalanceRequest
GetWalletBalance Get the balance of an asset in the wallet
Get the aggregated balance of an asset across all of the addresses in the wallet.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balance for @param assetId The symbol of the asset to fetch the balance for @return ApiGetWalletBalanceRequest
func (*WalletsAPIService) GetWalletBalanceExecute ¶
func (a *WalletsAPIService) GetWalletBalanceExecute(r ApiGetWalletBalanceRequest) (*Balance, *http.Response, error)
Execute executes the request
@return Balance
func (*WalletsAPIService) GetWalletExecute ¶
func (a *WalletsAPIService) GetWalletExecute(r ApiGetWalletRequest) (*Wallet, *http.Response, error)
Execute executes the request
@return Wallet
func (*WalletsAPIService) ListWalletBalances ¶
func (a *WalletsAPIService) ListWalletBalances(ctx context.Context, walletId string) ApiListWalletBalancesRequest
ListWalletBalances List wallet balances
List the balances of all of the addresses in the wallet aggregated by asset.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param walletId The ID of the wallet to fetch the balances for @return ApiListWalletBalancesRequest
func (*WalletsAPIService) ListWalletBalancesExecute ¶
func (a *WalletsAPIService) ListWalletBalancesExecute(r ApiListWalletBalancesRequest) (*AddressBalanceList, *http.Response, error)
Execute executes the request
@return AddressBalanceList
func (*WalletsAPIService) ListWallets ¶
func (a *WalletsAPIService) ListWallets(ctx context.Context) ApiListWalletsRequest
ListWallets List wallets
List wallets belonging to the user.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiListWalletsRequest
func (*WalletsAPIService) ListWalletsExecute ¶
func (a *WalletsAPIService) ListWalletsExecute(r ApiListWalletsRequest) (*WalletList, *http.Response, error)
Execute executes the request
@return WalletList
type Webhook ¶
type Webhook struct { // Identifier of the webhook. Id *string `json:"id,omitempty"` // The ID of the blockchain network NetworkId *string `json:"network_id,omitempty"` EventType *WebhookEventType `json:"event_type,omitempty"` EventTypeFilter *WebhookEventTypeFilter `json:"event_type_filter,omitempty"` // Webhook will monitor all events that matches any one of the event filters. EventFilters []WebhookEventFilter `json:"event_filters,omitempty"` // The URL to which the notifications will be sent. NotificationUri *string `json:"notification_uri,omitempty"` // The date and time the webhook was created. CreatedAt *time.Time `json:"created_at,omitempty"` // The date and time the webhook was last updated. UpdatedAt *time.Time `json:"updated_at,omitempty"` // The header that will contain the signature of the webhook payload. SignatureHeader *string `json:"signature_header,omitempty"` }
Webhook Webhook that is used for getting notifications when monitored events occur.
func NewWebhook ¶
func NewWebhook() *Webhook
NewWebhook instantiates a new Webhook 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
func NewWebhookWithDefaults ¶
func NewWebhookWithDefaults() *Webhook
NewWebhookWithDefaults instantiates a new Webhook 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
func (*Webhook) GetCreatedAt ¶
GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
func (*Webhook) GetCreatedAtOk ¶
GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetEventFilters ¶
func (o *Webhook) GetEventFilters() []WebhookEventFilter
GetEventFilters returns the EventFilters field value if set, zero value otherwise.
func (*Webhook) GetEventFiltersOk ¶
func (o *Webhook) GetEventFiltersOk() ([]WebhookEventFilter, bool)
GetEventFiltersOk returns a tuple with the EventFilters field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetEventType ¶
func (o *Webhook) GetEventType() WebhookEventType
GetEventType returns the EventType field value if set, zero value otherwise.
func (*Webhook) GetEventTypeFilter ¶ added in v0.0.9
func (o *Webhook) GetEventTypeFilter() WebhookEventTypeFilter
GetEventTypeFilter returns the EventTypeFilter field value if set, zero value otherwise.
func (*Webhook) GetEventTypeFilterOk ¶ added in v0.0.9
func (o *Webhook) GetEventTypeFilterOk() (*WebhookEventTypeFilter, bool)
GetEventTypeFilterOk returns a tuple with the EventTypeFilter field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetEventTypeOk ¶
func (o *Webhook) GetEventTypeOk() (*WebhookEventType, bool)
GetEventTypeOk returns a tuple with the EventType field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetIdOk ¶
GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetNetworkId ¶
GetNetworkId returns the NetworkId field value if set, zero value otherwise.
func (*Webhook) GetNetworkIdOk ¶
GetNetworkIdOk returns a tuple with the NetworkId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetNotificationUri ¶
GetNotificationUri returns the NotificationUri field value if set, zero value otherwise.
func (*Webhook) GetNotificationUriOk ¶
GetNotificationUriOk returns a tuple with the NotificationUri field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetSignatureHeader ¶ added in v0.0.9
GetSignatureHeader returns the SignatureHeader field value if set, zero value otherwise.
func (*Webhook) GetSignatureHeaderOk ¶ added in v0.0.9
GetSignatureHeaderOk returns a tuple with the SignatureHeader field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) GetUpdatedAt ¶
GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.
func (*Webhook) GetUpdatedAtOk ¶
GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.
func (*Webhook) HasCreatedAt ¶
HasCreatedAt returns a boolean if a field has been set.
func (*Webhook) HasEventFilters ¶
HasEventFilters returns a boolean if a field has been set.
func (*Webhook) HasEventType ¶
HasEventType returns a boolean if a field has been set.
func (*Webhook) HasEventTypeFilter ¶ added in v0.0.9
HasEventTypeFilter returns a boolean if a field has been set.
func (*Webhook) HasNetworkId ¶
HasNetworkId returns a boolean if a field has been set.
func (*Webhook) HasNotificationUri ¶
HasNotificationUri returns a boolean if a field has been set.
func (*Webhook) HasSignatureHeader ¶ added in v0.0.9
HasSignatureHeader returns a boolean if a field has been set.
func (*Webhook) HasUpdatedAt ¶
HasUpdatedAt returns a boolean if a field has been set.
func (Webhook) MarshalJSON ¶
func (*Webhook) SetCreatedAt ¶
SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.
func (*Webhook) SetEventFilters ¶
func (o *Webhook) SetEventFilters(v []WebhookEventFilter)
SetEventFilters gets a reference to the given []WebhookEventFilter and assigns it to the EventFilters field.
func (*Webhook) SetEventType ¶
func (o *Webhook) SetEventType(v WebhookEventType)
SetEventType gets a reference to the given WebhookEventType and assigns it to the EventType field.
func (*Webhook) SetEventTypeFilter ¶ added in v0.0.9
func (o *Webhook) SetEventTypeFilter(v WebhookEventTypeFilter)
SetEventTypeFilter gets a reference to the given WebhookEventTypeFilter and assigns it to the EventTypeFilter field.
func (*Webhook) SetNetworkId ¶
SetNetworkId gets a reference to the given string and assigns it to the NetworkId field.
func (*Webhook) SetNotificationUri ¶
SetNotificationUri gets a reference to the given string and assigns it to the NotificationUri field.
func (*Webhook) SetSignatureHeader ¶ added in v0.0.9
SetSignatureHeader gets a reference to the given string and assigns it to the SignatureHeader field.
func (*Webhook) SetUpdatedAt ¶
SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.
type WebhookEventFilter ¶
type WebhookEventFilter struct { // The onchain contract address of the token for which the events should be tracked. ContractAddress *string `json:"contract_address,omitempty"` // The onchain address of the sender. Set this filter to track all transfer events originating from your address. FromAddress *string `json:"from_address,omitempty"` // The onchain address of the receiver. Set this filter to track all transfer events sent to your address. ToAddress *string `json:"to_address,omitempty"` }
WebhookEventFilter The event_filter parameter specifies the criteria to filter events from the blockchain. It allows filtering events by contract address, sender address and receiver address. For a single event filter, not all of the properties need to be presented.
func NewWebhookEventFilter ¶
func NewWebhookEventFilter() *WebhookEventFilter
NewWebhookEventFilter instantiates a new WebhookEventFilter 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
func NewWebhookEventFilterWithDefaults ¶
func NewWebhookEventFilterWithDefaults() *WebhookEventFilter
NewWebhookEventFilterWithDefaults instantiates a new WebhookEventFilter 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
func (*WebhookEventFilter) GetContractAddress ¶
func (o *WebhookEventFilter) GetContractAddress() string
GetContractAddress returns the ContractAddress field value if set, zero value otherwise.
func (*WebhookEventFilter) GetContractAddressOk ¶
func (o *WebhookEventFilter) GetContractAddressOk() (*string, bool)
GetContractAddressOk returns a tuple with the ContractAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*WebhookEventFilter) GetFromAddress ¶
func (o *WebhookEventFilter) GetFromAddress() string
GetFromAddress returns the FromAddress field value if set, zero value otherwise.
func (*WebhookEventFilter) GetFromAddressOk ¶
func (o *WebhookEventFilter) GetFromAddressOk() (*string, bool)
GetFromAddressOk returns a tuple with the FromAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*WebhookEventFilter) GetToAddress ¶
func (o *WebhookEventFilter) GetToAddress() string
GetToAddress returns the ToAddress field value if set, zero value otherwise.
func (*WebhookEventFilter) GetToAddressOk ¶
func (o *WebhookEventFilter) GetToAddressOk() (*string, bool)
GetToAddressOk returns a tuple with the ToAddress field value if set, nil otherwise and a boolean to check if the value has been set.
func (*WebhookEventFilter) HasContractAddress ¶
func (o *WebhookEventFilter) HasContractAddress() bool
HasContractAddress returns a boolean if a field has been set.
func (*WebhookEventFilter) HasFromAddress ¶
func (o *WebhookEventFilter) HasFromAddress() bool
HasFromAddress returns a boolean if a field has been set.
func (*WebhookEventFilter) HasToAddress ¶
func (o *WebhookEventFilter) HasToAddress() bool
HasToAddress returns a boolean if a field has been set.
func (WebhookEventFilter) MarshalJSON ¶
func (o WebhookEventFilter) MarshalJSON() ([]byte, error)
func (*WebhookEventFilter) SetContractAddress ¶
func (o *WebhookEventFilter) SetContractAddress(v string)
SetContractAddress gets a reference to the given string and assigns it to the ContractAddress field.
func (*WebhookEventFilter) SetFromAddress ¶
func (o *WebhookEventFilter) SetFromAddress(v string)
SetFromAddress gets a reference to the given string and assigns it to the FromAddress field.
func (*WebhookEventFilter) SetToAddress ¶
func (o *WebhookEventFilter) SetToAddress(v string)
SetToAddress gets a reference to the given string and assigns it to the ToAddress field.
func (WebhookEventFilter) ToMap ¶
func (o WebhookEventFilter) ToMap() (map[string]interface{}, error)
type WebhookEventType ¶
type WebhookEventType string
WebhookEventType the model 'WebhookEventType'
const ( WEBHOOKEVENTTYPE_UNSPECIFIED WebhookEventType = "unspecified" WEBHOOKEVENTTYPE_ERC20_TRANSFER WebhookEventType = "erc20_transfer" WEBHOOKEVENTTYPE_ERC721_TRANSFER WebhookEventType = "erc721_transfer" WEBHOOKEVENTTYPE_WALLET_ACTIVITY WebhookEventType = "wallet_activity" )
List of WebhookEventType
func NewWebhookEventTypeFromValue ¶
func NewWebhookEventTypeFromValue(v string) (*WebhookEventType, error)
NewWebhookEventTypeFromValue returns a pointer to a valid WebhookEventType for the value passed as argument, or an error if the value passed is not allowed by the enum
func (WebhookEventType) IsValid ¶
func (v WebhookEventType) IsValid() bool
IsValid return true if the value is valid for the enum, false otherwise
func (WebhookEventType) Ptr ¶
func (v WebhookEventType) Ptr() *WebhookEventType
Ptr returns reference to WebhookEventType value
func (*WebhookEventType) UnmarshalJSON ¶
func (v *WebhookEventType) UnmarshalJSON(src []byte) error
type WebhookEventTypeFilter ¶ added in v0.0.9
type WebhookEventTypeFilter struct {
WebhookWalletActivityFilter *WebhookWalletActivityFilter
}
WebhookEventTypeFilter - The event_type_filter parameter specifies the criteria to filter events based on event type.
func WebhookWalletActivityFilterAsWebhookEventTypeFilter ¶ added in v0.0.9
func WebhookWalletActivityFilterAsWebhookEventTypeFilter(v *WebhookWalletActivityFilter) WebhookEventTypeFilter
WebhookWalletActivityFilterAsWebhookEventTypeFilter is a convenience function that returns WebhookWalletActivityFilter wrapped in WebhookEventTypeFilter
func (*WebhookEventTypeFilter) GetActualInstance ¶ added in v0.0.9
func (obj *WebhookEventTypeFilter) GetActualInstance() interface{}
Get the actual instance
func (WebhookEventTypeFilter) MarshalJSON ¶ added in v0.0.9
func (src WebhookEventTypeFilter) MarshalJSON() ([]byte, error)
Marshal data from the first non-nil pointers in the struct to JSON
func (*WebhookEventTypeFilter) UnmarshalJSON ¶ added in v0.0.9
func (dst *WebhookEventTypeFilter) UnmarshalJSON(data []byte) error
Unmarshal JSON data into one of the pointers in the struct
type WebhookList ¶
type WebhookList struct { Data []Webhook `json:"data"` // True if this list has another page of items after this one that can be fetched. HasMore *bool `json:"has_more,omitempty"` // The page token to be used to fetch the next page. NextPage *string `json:"next_page,omitempty"` }
WebhookList
func NewWebhookList ¶
func NewWebhookList(data []Webhook) *WebhookList
NewWebhookList instantiates a new WebhookList 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
func NewWebhookListWithDefaults ¶
func NewWebhookListWithDefaults() *WebhookList
NewWebhookListWithDefaults instantiates a new WebhookList 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
func (*WebhookList) GetData ¶
func (o *WebhookList) GetData() []Webhook
GetData returns the Data field value
func (*WebhookList) GetDataOk ¶
func (o *WebhookList) GetDataOk() ([]Webhook, bool)
GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.
func (*WebhookList) GetHasMore ¶
func (o *WebhookList) GetHasMore() bool
GetHasMore returns the HasMore field value if set, zero value otherwise.
func (*WebhookList) GetHasMoreOk ¶
func (o *WebhookList) GetHasMoreOk() (*bool, bool)
GetHasMoreOk returns a tuple with the HasMore field value if set, nil otherwise and a boolean to check if the value has been set.
func (*WebhookList) GetNextPage ¶
func (o *WebhookList) GetNextPage() string
GetNextPage returns the NextPage field value if set, zero value otherwise.
func (*WebhookList) GetNextPageOk ¶
func (o *WebhookList) GetNextPageOk() (*string, bool)
GetNextPageOk returns a tuple with the NextPage field value if set, nil otherwise and a boolean to check if the value has been set.
func (*WebhookList) HasHasMore ¶
func (o *WebhookList) HasHasMore() bool
HasHasMore returns a boolean if a field has been set.
func (*WebhookList) HasNextPage ¶
func (o *WebhookList) HasNextPage() bool
HasNextPage returns a boolean if a field has been set.
func (WebhookList) MarshalJSON ¶
func (o WebhookList) MarshalJSON() ([]byte, error)
func (*WebhookList) SetHasMore ¶
func (o *WebhookList) SetHasMore(v bool)
SetHasMore gets a reference to the given bool and assigns it to the HasMore field.
func (*WebhookList) SetNextPage ¶
func (o *WebhookList) SetNextPage(v string)
SetNextPage gets a reference to the given string and assigns it to the NextPage field.
func (WebhookList) ToMap ¶
func (o WebhookList) ToMap() (map[string]interface{}, error)
func (*WebhookList) UnmarshalJSON ¶
func (o *WebhookList) UnmarshalJSON(data []byte) (err error)
type WebhookWalletActivityFilter ¶ added in v0.0.9
type WebhookWalletActivityFilter struct { // A list of wallet addresses to filter on. Addresses []string `json:"addresses,omitempty"` // The ID of the wallet that owns the webhook. WalletId *string `json:"wallet_id,omitempty"` }
WebhookWalletActivityFilter Filter for wallet activity events. This filter allows the client to specify one or more wallet addresses to monitor for activities such as transactions, transfers, or other types of events that are associated with the specified addresses.
func NewWebhookWalletActivityFilter ¶ added in v0.0.9
func NewWebhookWalletActivityFilter() *WebhookWalletActivityFilter
NewWebhookWalletActivityFilter instantiates a new WebhookWalletActivityFilter 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
func NewWebhookWalletActivityFilterWithDefaults ¶ added in v0.0.9
func NewWebhookWalletActivityFilterWithDefaults() *WebhookWalletActivityFilter
NewWebhookWalletActivityFilterWithDefaults instantiates a new WebhookWalletActivityFilter 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
func (*WebhookWalletActivityFilter) GetAddresses ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) GetAddresses() []string
GetAddresses returns the Addresses field value if set, zero value otherwise.
func (*WebhookWalletActivityFilter) GetAddressesOk ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) GetAddressesOk() ([]string, bool)
GetAddressesOk returns a tuple with the Addresses field value if set, nil otherwise and a boolean to check if the value has been set.
func (*WebhookWalletActivityFilter) GetWalletId ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) GetWalletId() string
GetWalletId returns the WalletId field value if set, zero value otherwise.
func (*WebhookWalletActivityFilter) GetWalletIdOk ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) GetWalletIdOk() (*string, bool)
GetWalletIdOk returns a tuple with the WalletId field value if set, nil otherwise and a boolean to check if the value has been set.
func (*WebhookWalletActivityFilter) HasAddresses ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) HasAddresses() bool
HasAddresses returns a boolean if a field has been set.
func (*WebhookWalletActivityFilter) HasWalletId ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) HasWalletId() bool
HasWalletId returns a boolean if a field has been set.
func (WebhookWalletActivityFilter) MarshalJSON ¶ added in v0.0.9
func (o WebhookWalletActivityFilter) MarshalJSON() ([]byte, error)
func (*WebhookWalletActivityFilter) SetAddresses ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) SetAddresses(v []string)
SetAddresses gets a reference to the given []string and assigns it to the Addresses field.
func (*WebhookWalletActivityFilter) SetWalletId ¶ added in v0.0.9
func (o *WebhookWalletActivityFilter) SetWalletId(v string)
SetWalletId gets a reference to the given string and assigns it to the WalletId field.
func (WebhookWalletActivityFilter) ToMap ¶ added in v0.0.9
func (o WebhookWalletActivityFilter) ToMap() (map[string]interface{}, error)
type WebhooksAPI ¶
type WebhooksAPI interface { /* CreateWebhook Create a new webhook Create a new webhook @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiCreateWebhookRequest */ CreateWebhook(ctx context.Context) ApiCreateWebhookRequest // CreateWebhookExecute executes the request // @return Webhook CreateWebhookExecute(r ApiCreateWebhookRequest) (*Webhook, *http.Response, error) /* DeleteWebhook Delete a webhook Delete a webhook @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param webhookId The Webhook uuid that needs to be deleted @return ApiDeleteWebhookRequest */ DeleteWebhook(ctx context.Context, webhookId string) ApiDeleteWebhookRequest // DeleteWebhookExecute executes the request DeleteWebhookExecute(r ApiDeleteWebhookRequest) (*http.Response, error) /* ListWebhooks List webhooks List webhooks, optionally filtered by event type. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiListWebhooksRequest */ ListWebhooks(ctx context.Context) ApiListWebhooksRequest // ListWebhooksExecute executes the request // @return WebhookList ListWebhooksExecute(r ApiListWebhooksRequest) (*WebhookList, *http.Response, error) /* UpdateWebhook Update a webhook Update a webhook @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param webhookId The Webhook id that needs to be updated @return ApiUpdateWebhookRequest */ UpdateWebhook(ctx context.Context, webhookId string) ApiUpdateWebhookRequest // UpdateWebhookExecute executes the request // @return Webhook UpdateWebhookExecute(r ApiUpdateWebhookRequest) (*Webhook, *http.Response, error) }
type WebhooksAPIService ¶
type WebhooksAPIService service
WebhooksAPIService WebhooksAPI service
func (*WebhooksAPIService) CreateWebhook ¶
func (a *WebhooksAPIService) CreateWebhook(ctx context.Context) ApiCreateWebhookRequest
CreateWebhook Create a new webhook
Create a new webhook
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiCreateWebhookRequest
func (*WebhooksAPIService) CreateWebhookExecute ¶
func (a *WebhooksAPIService) CreateWebhookExecute(r ApiCreateWebhookRequest) (*Webhook, *http.Response, error)
Execute executes the request
@return Webhook
func (*WebhooksAPIService) DeleteWebhook ¶
func (a *WebhooksAPIService) DeleteWebhook(ctx context.Context, webhookId string) ApiDeleteWebhookRequest
DeleteWebhook Delete a webhook
Delete a webhook
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param webhookId The Webhook uuid that needs to be deleted @return ApiDeleteWebhookRequest
func (*WebhooksAPIService) DeleteWebhookExecute ¶
func (a *WebhooksAPIService) DeleteWebhookExecute(r ApiDeleteWebhookRequest) (*http.Response, error)
Execute executes the request
func (*WebhooksAPIService) ListWebhooks ¶
func (a *WebhooksAPIService) ListWebhooks(ctx context.Context) ApiListWebhooksRequest
ListWebhooks List webhooks
List webhooks, optionally filtered by event type.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiListWebhooksRequest
func (*WebhooksAPIService) ListWebhooksExecute ¶
func (a *WebhooksAPIService) ListWebhooksExecute(r ApiListWebhooksRequest) (*WebhookList, *http.Response, error)
Execute executes the request
@return WebhookList
func (*WebhooksAPIService) UpdateWebhook ¶
func (a *WebhooksAPIService) UpdateWebhook(ctx context.Context, webhookId string) ApiUpdateWebhookRequest
UpdateWebhook Update a webhook
Update a webhook
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param webhookId The Webhook id that needs to be updated @return ApiUpdateWebhookRequest
func (*WebhooksAPIService) UpdateWebhookExecute ¶
func (a *WebhooksAPIService) UpdateWebhookExecute(r ApiUpdateWebhookRequest) (*Webhook, *http.Response, error)
Execute executes the request
@return Webhook
Source Files ¶
- api_addresses.go
- api_assets.go
- api_balance_history.go
- api_contract_events.go
- api_contract_invocations.go
- api_external_addresses.go
- api_networks.go
- api_server_signers.go
- api_smart_contracts.go
- api_stake.go
- api_trades.go
- api_transfers.go
- api_users.go
- api_validators.go
- api_wallet_stake.go
- api_wallets.go
- api_webhooks.go
- client.go
- configuration.go
- model_address.go
- model_address_balance_list.go
- model_address_historical_balance_list.go
- model_address_list.go
- model_address_transaction_list.go
- model_asset.go
- model_balance.go
- model_broadcast_contract_invocation_request.go
- model_broadcast_staking_operation_request.go
- model_broadcast_trade_request.go
- model_broadcast_transfer_request.go
- model_build_staking_operation_request.go
- model_contract_event.go
- model_contract_event_list.go
- model_contract_invocation.go
- model_contract_invocation_list.go
- model_create_address_request.go
- model_create_contract_invocation_request.go
- model_create_payload_signature_request.go
- model_create_server_signer_request.go
- model_create_smart_contract_request.go
- model_create_staking_operation_request.go
- model_create_trade_request.go
- model_create_transfer_request.go
- model_create_wallet_request.go
- model_create_wallet_request_wallet.go
- model_create_webhook_request.go
- model_deploy_smart_contract_request.go
- model_erc20_transfer_event.go
- model_erc721_transfer_event.go
- model_error.go
- model_ethereum_transaction.go
- model_ethereum_transaction_access.go
- model_ethereum_transaction_access_list.go
- model_ethereum_transaction_flattened_trace.go
- model_ethereum_validator_metadata.go
- model_faucet_transaction.go
- model_feature_set.go
- model_fetch_historical_staking_balances_200_response.go
- model_fetch_staking_rewards_200_response.go
- model_fetch_staking_rewards_request.go
- model_get_staking_context_request.go
- model_historical_balance.go
- model_network.go
- model_network_identifier.go
- model_nft_contract_options.go
- model_payload_signature.go
- model_payload_signature_list.go
- model_seed_creation_event.go
- model_seed_creation_event_result.go
- model_server_signer.go
- model_server_signer_event.go
- model_server_signer_event_event.go
- model_server_signer_event_list.go
- model_server_signer_list.go
- model_signature_creation_event.go
- model_signature_creation_event_result.go
- model_signed_voluntary_exit_message_metadata.go
- model_smart_contract.go
- model_smart_contract_list.go
- model_smart_contract_options.go
- model_smart_contract_type.go
- model_sponsored_send.go
- model_staking_balance.go
- model_staking_context.go
- model_staking_context_context.go
- model_staking_operation.go
- model_staking_operation_metadata.go
- model_staking_reward.go
- model_staking_reward_format.go
- model_staking_reward_usd_value.go
- model_token_contract_options.go
- model_trade.go
- model_trade_list.go
- model_transaction.go
- model_transaction_content.go
- model_transaction_type.go
- model_transfer.go
- model_transfer_list.go
- model_update_webhook_request.go
- model_user.go
- model_validator.go
- model_validator_details.go
- model_validator_list.go
- model_validator_status.go
- model_wallet.go
- model_wallet_list.go
- model_webhook.go
- model_webhook_event_filter.go
- model_webhook_event_type.go
- model_webhook_event_type_filter.go
- model_webhook_list.go
- model_webhook_wallet_activity_filter.go
- response.go
- utils.go