Documentation ¶
Index ¶
- func MapRegisteredChainIDs(registered []isc.ChainID) []string
- type AccountListResponse
- type AccountNFTsResponse
- type AccountNonceResponse
- type AccountsResponse
- type AddUserRequest
- type AliasOutputMetricItem
- type Assets
- type AssetsResponse
- type BlockInfoResponse
- type BlockReceiptError
- type BlockReceiptsResponse
- type CallTarget
- type ChainInfoResponse
- type ChainMetrics
- type ChainRecord
- type CommitteeInfoResponse
- type CommitteeNode
- type ConsensusPipeMetrics
- type ConsensusWorkflowMetrics
- type ContractCallViewRequest
- type ContractInfoResponse
- type ControlAddressesResponse
- type DKSharesInfo
- type DKSharesPostRequest
- type ErrorParameter
- type EventsResponse
- type FoundryOutputResponse
- type InOutput
- type InOutputMetricItem
- type InStateOutput
- type InStateOutputMetricItem
- type InfoResponse
- type InterfaceMetricItem
- type L1Params
- type MetricItem
- type MilestoneInfo
- type MilestoneMetricItem
- type NFTDataResponse
- type NativeToken
- type NativeTokenIDRegistryResponse
- type NodeOwnerCertificateRequest
- type NodeOwnerCertificateResponse
- type OffLedgerRequest
- type OnLedgerRequest
- type OnLedgerRequestMetricItem
- type Output
- type OutputID
- type PeeringNodeIdentityResponse
- type PeeringNodePublicKeyRequest
- type PeeringNodeStatusResponse
- type PeeringTrustRequest
- type ProtocolParameters
- type PublisherStateTransactionItem
- type ReceiptError
- type ReceiptResponse
- type RegisteredChainIDItems
- type RentStructure
- type RequestDetail
- type RequestIDResponse
- type RequestIDsResponse
- type RequestProcessedResponse
- type RequestReceiptResponse
- type StateResponse
- type StateTransaction
- type Transaction
- type TransactionIDMetricItem
- type TransactionMetricItem
- type TxInclusionStateMsg
- type TxInclusionStateMsgMetricItem
- type UTXOInputMetricItem
- type UpdateUserPasswordRequest
- type UpdateUserPermissionsRequest
- type User
- type VersionResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func MapRegisteredChainIDs ¶
Types ¶
type AccountListResponse ¶
type AccountListResponse struct {
Accounts []string `json:"accounts" swagger:"required"`
}
type AccountNFTsResponse ¶
type AccountNFTsResponse struct {
NFTIDs []string `json:"nftIds" swagger:"required"`
}
type AccountNonceResponse ¶
type AccountNonceResponse struct {
Nonce string `json:"nonce" swagger:"required,desc(The nonce (uint64 as string))"`
}
type AccountsResponse ¶
type AccountsResponse struct {
AccountIDs []string `json:"accountIds" swagger:"required"`
}
type AddUserRequest ¶
type AliasOutputMetricItem ¶
type AliasOutputMetricItem MetricItem[*Output]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type Assets ¶
type Assets struct { BaseTokens string `json:"baseTokens" swagger:"required,desc(The base tokens (uint64 as string))"` NativeTokens []*NativeToken `json:"nativeTokens" swagger:"required"` NFTs []string `json:"nfts" swagger:"required"` }
type AssetsResponse ¶
type AssetsResponse struct { BaseTokens string `json:"baseTokens" swagger:"required,desc(The base tokens (uint64 as string))"` NativeTokens []*NativeToken `json:"nativeTokens" swagger:"required"` }
type BlockInfoResponse ¶
type BlockInfoResponse struct { AnchorTransactionID string `json:"anchorTransactionId" swagger:"required"` BlockIndex uint32 `json:"blockIndex" swagger:"required,min(1)"` GasBurned string `json:"gasBurned" swagger:"required,desc(The burned gas (uint64 as string))"` GasFeeCharged string `json:"gasFeeCharged" swagger:"required,desc(The charged gas fee (uint64 as string))"` L1CommitmentHash string `json:"l1CommitmentHash" swagger:"required"` NumOffLedgerRequests uint16 `json:"numOffLedgerRequests" swagger:"required,min(1)"` NumSuccessfulRequests uint16 `json:"numSuccessfulRequests" swagger:"required,min(1)"` PreviousL1CommitmentHash string `json:"previousL1CommitmentHash" swagger:"required"` Timestamp time.Time `json:"timestamp" swagger:"required"` TotalBaseTokensInL2Accounts string `json:"totalBaseTokensInL2Accounts" swagger:"required,desc(The total L2 base tokens (uint64 as string))"` TotalRequests uint16 `json:"totalRequests" swagger:"required,min(1)"` TotalStorageDeposit string `json:"totalStorageDeposit" swagger:"required,desc(The total storage deposit (uint64 as string))"` TransactionSubEssenceHash string `json:"transactionSubEssenceHash" swagger:"required"` }
func MapBlockInfoResponse ¶
func MapBlockInfoResponse(info *blocklog.BlockInfo) *BlockInfoResponse
type BlockReceiptError ¶
type BlockReceiptsResponse ¶
type BlockReceiptsResponse struct {
Receipts []*RequestReceiptResponse `json:"receipts" swagger:"required"`
}
type CallTarget ¶
type CallTarget struct { ContractHName string `json:"contractHName" swagger:"desc(The contract name as HName (Hex)),required"` FunctionHName string `json:"functionHName" swagger:"desc(The function name as HName (Hex)),required"` }
func MapCallTarget ¶
func MapCallTarget(target isc.CallTarget) CallTarget
type ChainInfoResponse ¶
type ChainInfoResponse struct { IsActive bool `json:"isActive" swagger:"desc(Whether or not the chain is active.),required"` ChainID string `json:"chainID" swagger:"desc(ChainID (Bech32-encoded).),required"` EVMChainID uint16 `json:"evmChainId" swagger:"desc(The EVM chain ID),required,min(1)"` ChainOwnerID string `json:"chainOwnerId" swagger:"desc(The chain owner address (Bech32-encoded).),required"` Description string `json:"description" swagger:"desc(The description of the chain.),required"` GasFeePolicy gasFeePolicy `json:"gasFeePolicy"` MaxBlobSize uint32 `json:"maxBlobSize" swagger:"desc(The maximum contract blob size.),required,min(1)"` MaxEventSize uint16 `json:"maxEventSize" swagger:"desc(The maximum event size.),required,min(1)"` // TODO: Clarify MaxEventsPerReq uint16 `json:"maxEventsPerReq" swagger:"desc(The maximum amount of events per request.),required,min(1)"` // TODO: Clarify }
func MapChainInfoResponse ¶
func MapChainInfoResponse(chainInfo *dto.ChainInfo, evmChainID uint16) ChainInfoResponse
type ChainMetrics ¶
type ChainMetrics struct { RegisteredChainIDs RegisteredChainIDItems `json:"registeredChainIDs" swagger:"required"` InAliasOutput AliasOutputMetricItem `json:"inAliasOutput" swagger:"required"` InOnLedgerRequest OnLedgerRequestMetricItem `json:"inOnLedgerRequest" swagger:"required"` InOutput InOutputMetricItem `json:"inOutput" swagger:"required"` InStateOutput InStateOutputMetricItem `json:"inStateOutput" swagger:"required"` InTxInclusionState TxInclusionStateMsgMetricItem `json:"inTxInclusionState" swagger:"required"` InMilestone MilestoneMetricItem `json:"inMilestone" swagger:"required"` OutPublishGovernanceTransaction TransactionMetricItem `json:"outPublishGovernanceTransaction" swagger:"required"` OutPublisherStateTransaction PublisherStateTransactionItem `json:"outPublisherStateTransaction" swagger:"required"` OutPullLatestOutput InterfaceMetricItem `json:"outPullLatestOutput" swagger:"required"` OutPullOutputByID UTXOInputMetricItem `json:"outPullOutputByID" swagger:"required"` OutPullTxInclusionState TransactionIDMetricItem `json:"outPullTxInclusionState" swagger:"required"` }
func MapChainMetrics ¶
func MapChainMetrics(metrics *dto.ChainMetrics) *ChainMetrics
type ChainRecord ¶
type CommitteeInfoResponse ¶
type CommitteeInfoResponse struct { AccessNodes []CommitteeNode `json:"accessNodes" swagger:"desc(A list of all access nodes and their peering info.),required"` Active bool `json:"active" swagger:"desc(Whether or not the chain is active.),required"` CandidateNodes []CommitteeNode `json:"candidateNodes" swagger:"desc(A list of all candidate nodes and their peering info.),required"` ChainID string `json:"chainId" swagger:"desc(ChainID (Bech32-encoded).),required"` CommitteeNodes []CommitteeNode `json:"committeeNodes" swagger:"desc(A list of all committee nodes and their peering info.),required"` StateAddress string `json:"stateAddress" swagger:"desc(State address, if we are part of it.),required"` }
type CommitteeNode ¶
type CommitteeNode struct { AccessAPI string `json:"accessAPI" swagger:"required"` Node PeeringNodeStatusResponse `json:"node" swagger:"required"` }
func MapCommitteeNode ¶
func MapCommitteeNode(status *dto.ChainNodeStatus) CommitteeNode
func MapCommitteeNodes ¶
func MapCommitteeNodes(status []*dto.ChainNodeStatus) []CommitteeNode
type ConsensusPipeMetrics ¶
type ConsensusPipeMetrics struct { EventStateTransitionMsgPipeSize int `json:"eventStateTransitionMsgPipeSize" swagger:"required"` EventPeerLogIndexMsgPipeSize int `json:"eventPeerLogIndexMsgPipeSize" swagger:"required"` EventACSMsgPipeSize int `json:"eventACSMsgPipeSize" swagger:"required"` EventVMResultMsgPipeSize int `json:"eventVMResultMsgPipeSize" swagger:"required"` EventTimerMsgPipeSize int `json:"eventTimerMsgPipeSize" swagger:"required"` }
func MapConsensusPipeMetrics ¶
func MapConsensusPipeMetrics(pipeMetrics chain.ConsensusPipeMetrics) *ConsensusPipeMetrics
type ConsensusWorkflowMetrics ¶
type ConsensusWorkflowMetrics struct { FlagStateReceived bool `json:"flagStateReceived" swagger:"desc(Shows if state output is received in current consensus iteration),required"` FlagBatchProposalSent bool `json:"flagBatchProposalSent" swagger:"desc(Shows if batch proposal is sent out in current consensus iteration),required"` FlagConsensusBatchKnown bool `` /* 135-byte string literal not displayed */ FlagVMStarted bool `json:"flagVMStarted" swagger:"desc(Shows if virtual machine is started in current consensus iteration),required"` FlagVMResultSigned bool `` /* 131-byte string literal not displayed */ FlagTransactionFinalized bool `` /* 132-byte string literal not displayed */ FlagTransactionPosted bool `json:"flagTransactionPosted" swagger:"desc(Shows if transaction is posted to L1 in current consensus iteration),required"` FlagTransactionSeen bool `` /* 136-byte string literal not displayed */ FlagInProgress bool `` /* 129-byte string literal not displayed */ TimeBatchProposalSent time.Time `` /* 128-byte string literal not displayed */ TimeConsensusBatchKnown time.Time `` /* 149-byte string literal not displayed */ TimeVMStarted time.Time `json:"timeVMStarted" swagger:"desc(Shows when virtual machine was last started in current consensus iteration),required"` TimeVMResultSigned time.Time `` /* 146-byte string literal not displayed */ TimeTransactionFinalized time.Time `` /* 184-byte string literal not displayed */ TimeTransactionPosted time.Time `` /* 129-byte string literal not displayed */ TimeTransactionSeen time.Time `` /* 151-byte string literal not displayed */ TimeCompleted time.Time `json:"timeCompleted" swagger:"desc(Shows when algorithm was last completed in current consensus iteration),required"` CurrentStateIndex uint32 `json:"currentStateIndex" swagger:"desc(Shows current state index of the consensus),min(1)"` }
func MapConsensusWorkflowStatus ¶
func MapConsensusWorkflowStatus(status chain.ConsensusWorkflowStatus) *ConsensusWorkflowMetrics
type ContractCallViewRequest ¶
type ContractCallViewRequest struct { ChainID string `json:"chainId" swagger:"desc(The chain id),required"` ContractName string `json:"contractName" swagger:"desc(The contract name),required"` ContractHName string `json:"contractHName" swagger:"desc(The contract name as HName (Hex)),required"` FunctionName string `json:"functionName" swagger:"desc(The function name),required"` FunctionHName string `json:"functionHName" swagger:"desc(The function name as HName (Hex)),required"` Arguments dict.JSONDict `json:"arguments" swagger:"desc(Encoded arguments to be passed to the function),required"` }
type ContractInfoResponse ¶
type ContractInfoResponse struct { Description string `json:"description" swagger:"desc(The description of the contract.),required"` HName string `json:"hName" swagger:"desc(The id (HName as Hex)) of the contract.),required"` Name string `json:"name" swagger:"desc(The name of the contract.),required"` ProgramHash string `json:"programHash" swagger:"desc(The hash of the contract. (Hex encoded)),required"` }
type ControlAddressesResponse ¶
type ControlAddressesResponse struct { GoverningAddress string `json:"governingAddress" swagger:"required,desc(The governing address (Bech32))"` SinceBlockIndex uint32 `json:"sinceBlockIndex" swagger:"required,min(1),desc(The block index (uint32)"` StateAddress string `json:"stateAddress" swagger:"required,desc(The state address (Bech32))"` }
type DKSharesInfo ¶
type DKSharesInfo struct {}
DKSharesInfo stands for the DKShare representation, returned by the GET and POST methods.
type DKSharesPostRequest ¶
type DKSharesPostRequest struct {}
DKSharesPostRequest is a POST request for creating new DKShare.
type ErrorParameter ¶
type ErrorParameter struct { Value string `json:"value" swagger:"required"` Type string `json:"type" swagger:"required"` }
func MapErrorParameter ¶
func MapErrorParameter(param interface{}) ErrorParameter
type EventsResponse ¶
type EventsResponse struct {
Events []string `json:"events" swagger:"required"`
}
type FoundryOutputResponse ¶
type FoundryOutputResponse struct { FoundryID string `json:"foundryId" swagger:"required"` Assets AssetsResponse `json:"assets" swagger:"required"` }
type InOutput ¶
type InOutput struct { OutputID string `json:"outputId" swagger:"desc(The output ID),required"` Output *Output `json:"output" swagger:"desc(The parsed output),required"` }
func InOutputFromISCInOutput ¶
func InOutputFromISCInOutput(output *nodeconnmetrics.InOutput) *InOutput
type InOutputMetricItem ¶
type InOutputMetricItem MetricItem[*InOutput]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type InStateOutput ¶
type InStateOutput struct { OutputID string `json:"outputId" swagger:"desc(The output ID),required"` Output *Output `json:"output" swagger:"desc(The parsed output),required"` }
func InStateOutputFromISCInStateOutput ¶
func InStateOutputFromISCInStateOutput(output *nodeconnmetrics.InStateOutput) *InStateOutput
type InStateOutputMetricItem ¶
type InStateOutputMetricItem MetricItem[*InStateOutput]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type InfoResponse ¶
type InfoResponse struct { Version string `json:"version" swagger:"desc(The version of the node),required"` PublicKey string `json:"publicKey" swagger:"desc(The public key of the node (Hex)),required"` PeeringURL string `json:"peeringURL" swagger:"desc(The net id of the node),required"` L1Params *L1Params `json:"l1Params" swagger:"desc(The L1 parameters),required"` }
type InterfaceMetricItem ¶
type InterfaceMetricItem MetricItem[interface{}]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type L1Params ¶
type L1Params struct { MaxPayloadSize int `json:"maxPayloadSize" swagger:"desc(The max payload size),required"` Protocol ProtocolParameters `json:"protocol" swagger:"desc(The protocol parameters),required"` BaseToken parameters.BaseToken `json:"baseToken" swagger:"desc(The base token parameters),required"` }
func MapL1Params ¶
func MapL1Params(l1 *parameters.L1Params) *L1Params
type MetricItem ¶
type MetricItem[T interface{}] struct { Messages uint32 `json:"messages" swagger:"required,min(1)"` Timestamp time.Time `json:"timestamp" swagger:"required"` LastMessage T `json:"lastMessage" swagger:"required"` }
func MapMetricItem ¶
func MapMetricItem[T any, G any](metrics *dto.MetricItem[G], value T) MetricItem[T]
type MilestoneInfo ¶
type MilestoneInfo struct { Index uint32 `json:"index" swagger:"min(0)"` Timestamp uint32 `json:"timestamp" swagger:"min(0)"` MilestoneID string `json:"milestoneId"` }
func MilestoneFromIotaGoMilestone ¶
func MilestoneFromIotaGoMilestone(milestone *nodeclient.MilestoneInfo) *MilestoneInfo
type MilestoneMetricItem ¶
type MilestoneMetricItem MetricItem[*MilestoneInfo]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type NFTDataResponse ¶
type NFTDataResponse struct { ID string `json:"id" swagger:"required"` Issuer string `json:"issuer" swagger:"required"` Metadata string `json:"metadata" swagger:"required"` Owner string `json:"owner" swagger:"required"` }
func MapNFTDataResponse ¶
func MapNFTDataResponse(nft *isc.NFT) *NFTDataResponse
type NativeToken ¶
type NativeToken struct { ID string `json:"id" swagger:"required"` Amount string `json:"amount" swagger:"required"` }
func MapNativeToken ¶
func MapNativeToken(token *iotago.NativeToken) *NativeToken
func MapNativeTokens ¶
func MapNativeTokens(tokens iotago.NativeTokens) []*NativeToken
type NativeTokenIDRegistryResponse ¶
type NativeTokenIDRegistryResponse struct {
NativeTokenRegistryIDs []string `json:"nativeTokenRegistryIds" swagger:"required"`
}
type NodeOwnerCertificateResponse ¶
type NodeOwnerCertificateResponse struct {
Certificate string `json:"certificate" swagger:"desc(Certificate stating the ownership. (Hex)),required"`
}
type OffLedgerRequest ¶
type OnLedgerRequest ¶
type OnLedgerRequest struct { ID string `json:"id" swagger:"desc(The request ID),required"` OutputID string `json:"outputId" swagger:"desc(The output ID),required"` Output *Output `json:"output" swagger:"desc(The parsed output),required"` Raw string `json:"raw" swagger:"desc(The raw data of the request (Hex)),required"` }
func OnLedgerRequestFromISC ¶
func OnLedgerRequestFromISC(request isc.OnLedgerRequest) *OnLedgerRequest
type OnLedgerRequestMetricItem ¶
type OnLedgerRequestMetricItem MetricItem[*OnLedgerRequest]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type Output ¶
type Output struct { OutputType iotago.OutputType `json:"outputType" swagger:"desc(The output type),required"` Raw string `json:"raw" swagger:"desc(The raw data of the output (Hex)),required"` }
func OutputFromIotaGoOutput ¶
type OutputID ¶
type OutputID struct {
OutputID string `json:"outputId" swagger:"desc(The output ID),required"`
}
type PeeringNodeIdentityResponse ¶
type PeeringNodeIdentityResponse struct { Name string `json:"name" swagger:"unique peer name - easy identifier for humans,required"` PublicKey string `json:"publicKey" swagger:"desc(The peers public key encoded in Hex),required"` PeeringURL string `json:"peeringURL" swagger:"desc(The peering URL of the peer),required"` IsTrusted bool `json:"isTrusted" swagger:"Desc(Whether or not the peer is trusted),required"` }
type PeeringNodePublicKeyRequest ¶
type PeeringNodePublicKeyRequest struct {
PublicKey string `json:"publicKey" swagger:"desc(The peers public key encoded in Hex),required"`
}
type PeeringNodeStatusResponse ¶
type PeeringNodeStatusResponse struct { Name string `json:"name" swagger:"unique peer name - easy identifier for humans,required"` IsAlive bool `json:"isAlive" swagger:"desc(Whether or not the peer is activated),required"` PeeringURL string `json:"peeringURL" swagger:"desc(The peering URL of the peer),required"` NumUsers int `json:"numUsers" swagger:"desc(The amount of users attached to the peer),required"` PublicKey string `json:"publicKey" swagger:"desc(The peers public key encoded in Hex),required"` IsTrusted bool `json:"isTrusted" swagger:"Desc(Whether or not the peer is trusted),required"` }
type PeeringTrustRequest ¶
type PeeringTrustRequest struct { Name string `json:"name" swagger:"unique peer name - easy identifier for humans,required"` PublicKey string `json:"publicKey" swagger:"desc(The peers public key encoded in Hex),required"` PeeringURL string `json:"peeringURL" swagger:"desc(The peering URL of the peer),required"` }
type ProtocolParameters ¶
type ProtocolParameters struct { // The version of the protocol running. Version byte `json:"version" swagger:"desc(The protocol version),required"` // The human friendly name of the network. NetworkName string `json:"networkName" swagger:"desc(The network name),required"` // The HRP prefix used for Bech32 addresses in the network. Bech32HRP iotago.NetworkPrefix `json:"bech32Hrp" swagger:"desc(The human readable network prefix),required"` // The minimum pow score of the network. MinPoWScore uint32 `json:"minPowScore" swagger:"desc(The minimal PoW score),required,min(1)"` // The below max depth parameter of the network. BelowMaxDepth uint8 `json:"belowMaxDepth" swagger:"desc(The networks max depth),required,min(1)"` // The rent structure used by given node/network. RentStructure RentStructure `json:"rentStructure" swagger:"desc(The rent structure of the protocol),required"` // TokenSupply defines the current token supply on the network. TokenSupply string `json:"tokenSupply" swagger:"desc(The token supply),required"` }
type PublisherStateTransactionItem ¶
type PublisherStateTransactionItem MetricItem[*StateTransaction]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type ReceiptError ¶
type ReceiptError struct { ContractHName string `json:"contractHName" swagger:"required,desc(The contract hname (Hex))"` ErrorID uint16 `json:"errorId" swagger:"required,min(1)"` ErrorCode string `json:"errorCode" swagger:"required"` Message string `json:"message" swagger:"required"` MessageFormat string `json:"messageFormat" swagger:"required"` Parameters []ErrorParameter `json:"parameters" swagger:""` }
func MapReceiptError ¶
func MapReceiptError(vmError *isc.VMError) *ReceiptError
type ReceiptResponse ¶
type ReceiptResponse struct { Request string `json:"request" swagger:"required"` Error *ReceiptError `json:"error"` GasBudget string `json:"gasBudget" swagger:"required,desc(The gas budget (uint64 as string))"` GasBurned string `json:"gasBurned" swagger:"required,desc(The burned gas (uint64 as string))"` GasFeeCharged string `json:"gasFeeCharged" swagger:"required,desc(The charged gas fee (uint64 as string))"` BlockIndex uint32 `json:"blockIndex" swagger:"required,min(1)"` RequestIndex uint16 `json:"requestIndex" swagger:"required,min(1)"` GasBurnLog []gas.BurnRecord `json:"gasBurnLog" swagger:"required"` }
func MapReceiptResponse ¶
func MapReceiptResponse(receipt *isc.Receipt, resolvedError *isc.VMError) *ReceiptResponse
type RegisteredChainIDItems ¶
type RegisteredChainIDItems []string
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type RentStructure ¶
type RentStructure struct { // Defines the rent of a single virtual byte denoted in IOTA tokens. VByteCost uint32 `json:"vByteCost" swagger:"desc(The virtual byte cost),required,min(1)"` // Defines the factor to be used for data only fields. VBFactorData iotago.VByteCostFactor `json:"vByteFactorData" swagger:"desc(The virtual byte factor for data fields),required"` // defines the factor to be used for key/lookup generating fields. VBFactorKey iotago.VByteCostFactor `json:"vByteFactorKey" swagger:"desc(The virtual byte factor for key/lookup generating fields),required"` }
RentStructure defines the parameters of rent cost calculations on objects which take node resources.
type RequestDetail ¶
type RequestDetail struct { Allowance *Assets `json:"allowance" swagger:"required"` CallTarget CallTarget `json:"callTarget" swagger:"required"` Assets *Assets `json:"fungibleTokens" swagger:"required"` GasGudget string `json:"gasGudget,string" swagger:"required,desc(The gas budget (uint64 as string))"` IsEVM bool `json:"isEVM" swagger:"required"` IsOffLedger bool `json:"isOffLedger" swagger:"required"` NFT *NFTDataResponse `json:"nft" swagger:"required"` Params dict.JSONDict `json:"params" swagger:"required"` RequestID string `json:"requestId" swagger:"required"` SenderAccount string `json:"senderAccount" swagger:"required"` TargetAddress string `json:"targetAddress" swagger:"required"` }
func MapRequestDetail ¶
func MapRequestDetail(request isc.Request) *RequestDetail
type RequestIDResponse ¶
type RequestIDResponse struct {
RequestID string `json:"requestId" swagger:"desc(The request ID of the given transaction ID. (Hex)),required"`
}
type RequestIDsResponse ¶
type RequestIDsResponse struct {
RequestIDs []string `json:"requestIds" swagger:"required"`
}
type RequestReceiptResponse ¶
type RequestReceiptResponse struct { BlockIndex uint32 `json:"blockIndex" swagger:"required,min(1)"` Error *BlockReceiptError `json:"error" swagger:""` GasBudget string `json:"gasBudget" swagger:"required,desc(The gas budget (uint64 as string))"` GasBurnLog *gas.BurnLog `json:"gasBurnLog" swagger:"required"` GasBurned string `json:"gasBurned" swagger:"required,desc(The burned gas (uint64 as string))"` GasFeeCharged string `json:"gasFeeCharged" swagger:"required,desc(The charged gas fee (uint64 as string))"` Request *RequestDetail `json:"request" swagger:"required"` RequestIndex uint16 `json:"requestIndex" swagger:"required,min(1)"` }
type StateResponse ¶
type StateResponse struct {
State string `json:"state" swagger:"desc(The state of the requested key (Hex-encoded)),required"`
}
type StateTransaction ¶
type StateTransaction struct { StateIndex uint32 `json:"stateIndex" swagger:"desc(The state index),required,min(1)"` TransactionID string `json:"txId" swagger:"desc(The transaction ID),required"` }
func StateTransactionFromISCStateTransaction ¶
func StateTransactionFromISCStateTransaction(transaction *nodeconnmetrics.StateTransaction) *StateTransaction
type Transaction ¶
type Transaction struct {
TransactionID string `json:"txId" swagger:"desc(The transaction ID),required"`
}
func TransactionFromIotaGoTransaction ¶
func TransactionFromIotaGoTransaction(transaction *iotago.Transaction) *Transaction
func TransactionFromIotaGoTransactionID ¶
func TransactionFromIotaGoTransactionID(txID *iotago.TransactionID) *Transaction
type TransactionIDMetricItem ¶
type TransactionIDMetricItem MetricItem[*Transaction]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type TransactionMetricItem ¶
type TransactionMetricItem MetricItem[*Transaction]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type TxInclusionStateMsg ¶
type TxInclusionStateMsg struct { TransactionID string `json:"txId" swagger:"desc(The transaction ID),required"` State string `json:"state" swagger:"desc(The inclusion state),required"` }
func TxInclusionStateMsgFromISCTxInclusionStateMsg ¶
func TxInclusionStateMsgFromISCTxInclusionStateMsg(inclusionState *nodeconnmetrics.TxInclusionStateMsg) *TxInclusionStateMsg
type TxInclusionStateMsgMetricItem ¶
type TxInclusionStateMsgMetricItem MetricItem[*TxInclusionStateMsg]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type UTXOInputMetricItem ¶
type UTXOInputMetricItem MetricItem[*OutputID]
ChainMetrics Echo Swagger does not support generics such as MetricItem[Foo] Creating separate types works instead. To not create a mapper for each type, the actual service remains using MetricItem[Foo] but this model here is presented to the docs. This can be removed if we change to swag/echo-swagger
type UpdateUserPasswordRequest ¶
type UpdateUserPasswordRequest struct {
Password string `json:"password" swagger:"required"`
}
type UpdateUserPermissionsRequest ¶
type UpdateUserPermissionsRequest struct {
Permissions []string `json:"permissions" swagger:"required"`
}
type VersionResponse ¶
type VersionResponse struct {
Version string `json:"version" swagger:"desc(The version of the node),required"`
}