Documentation ¶
Overview ¶
Package generated provides primitives to interact with the openapi HTTP API.
Code generated by github.com/algorand/oapi-codegen DO NOT EDIT.
Package generated provides primitives to interact with the openapi HTTP API.
Code generated by github.com/algorand/oapi-codegen DO NOT EDIT.
Index ¶
- func GetSwagger() (swagger *openapi3.T, err error)
- func PathToRawSpec(pathToFile string) map[string]func() ([]byte, error)
- func RegisterHandlers(router EchoRouter, si ServerInterface, m ...echo.MiddlewareFunc)
- func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string, ...)
- type Account
- type AccountId
- type AccountParticipation
- type AccountResponse
- type AccountSigType
- type AccountStateDelta
- type AccountsResponse
- type Address
- type AddressRole
- type AfterTime
- type Application
- type ApplicationId
- type ApplicationLocalState
- type ApplicationLocalStatesResponse
- type ApplicationLogData
- type ApplicationLogsResponse
- type ApplicationParams
- type ApplicationResponse
- type ApplicationStateSchema
- type ApplicationsResponse
- type Asset
- type AssetBalancesResponse
- type AssetHolding
- type AssetHoldingsResponse
- type AssetId
- type AssetParams
- type AssetResponse
- type AssetsResponse
- type AuthAddr
- type BeforeTime
- type Block
- type BlockResponse
- type BlockRewards
- type BlockUpgradeState
- type BlockUpgradeVote
- type Box
- type BoxDescriptor
- type BoxName
- type BoxResponse
- type BoxesResponse
- type CurrencyGreaterThan
- type CurrencyLessThan
- type EchoRouter
- type ErrorResponse
- type EvalDelta
- type EvalDeltaKeyValue
- type Exclude
- type ExcludeCloseTo
- type HashFactory
- type Hashtype
- type HeaderOnly
- type HealthCheck
- type HealthCheckResponse
- type IncludeAll
- type IndexerStateProofMessage
- type Limit
- type LookupAccountAppLocalStatesParams
- type LookupAccountAssetsParams
- type LookupAccountByIDParams
- type LookupAccountByIDParamsExclude
- type LookupAccountCreatedApplicationsParams
- type LookupAccountCreatedAssetsParams
- type LookupAccountTransactionsParams
- type LookupAccountTransactionsParamsSigType
- type LookupAccountTransactionsParamsTxType
- type LookupApplicationBoxByIDAndNameParams
- type LookupApplicationByIDParams
- type LookupApplicationLogsByIDParams
- type LookupAssetBalancesParams
- type LookupAssetByIDParams
- type LookupAssetTransactionsParams
- type LookupAssetTransactionsParamsAddressRole
- type LookupAssetTransactionsParamsSigType
- type LookupAssetTransactionsParamsTxType
- type LookupBlockParams
- type MaxRound
- type MerkleArrayProof
- type MinRound
- type MiniAssetHolding
- type Next
- type NotePrefix
- type OnCompletion
- type ParticipationUpdates
- type RekeyTo
- type Round
- type RoundNumber
- type SearchForAccountsParams
- type SearchForAccountsParamsExclude
- type SearchForApplicationBoxesParams
- type SearchForApplicationsParams
- type SearchForAssetsParams
- type SearchForTransactionsParams
- type SearchForTransactionsParamsAddressRole
- type SearchForTransactionsParamsSigType
- type SearchForTransactionsParamsTxType
- type SenderAddress
- type ServerInterface
- type ServerInterfaceWrapper
- func (w *ServerInterfaceWrapper) LookupAccountAppLocalStates(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAccountAssets(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAccountByID(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAccountCreatedApplications(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAccountCreatedAssets(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAccountTransactions(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupApplicationBoxByIDAndName(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupApplicationByID(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupApplicationLogsByID(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAssetBalances(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAssetByID(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupAssetTransactions(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupBlock(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) LookupTransaction(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) SearchForAccounts(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) SearchForApplicationBoxes(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) SearchForApplications(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) SearchForAssets(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) SearchForTransactions(ctx echo.Context) error
- type SigType
- type StateDelta
- type StateProofFields
- type StateProofParticipant
- type StateProofReveal
- type StateProofSigSlot
- type StateProofSignature
- type StateProofTracking
- type StateProofVerifier
- type StateSchema
- type TealKeyValue
- type TealKeyValueStore
- type TealValue
- type Transaction
- type TransactionApplication
- type TransactionAssetConfig
- type TransactionAssetFreeze
- type TransactionAssetTransfer
- type TransactionKeyreg
- type TransactionPayment
- type TransactionResponse
- type TransactionSignature
- type TransactionSignatureLogicsig
- type TransactionSignatureMultisig
- type TransactionSignatureMultisigSubsignature
- type TransactionStateProof
- type TransactionTxType
- type TransactionsResponse
- type TxType
- type Txid
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetSwagger ¶
GetSwagger returns the Swagger specification corresponding to the generated code in this file. The external references of Swagger specification are resolved. The logic of resolving external references is tightly connected to "import-mapping" feature. Externally referenced files must be embedded in the corresponding golang packages. Urls can be supported but this task was out of the scope.
func PathToRawSpec ¶
Constructs a synthetic filesystem for resolving external references when loading openapi specifications.
func RegisterHandlers ¶
func RegisterHandlers(router EchoRouter, si ServerInterface, m ...echo.MiddlewareFunc)
RegisterHandlers adds each server route to the EchoRouter.
func RegisterHandlersWithBaseURL ¶
func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string, m ...echo.MiddlewareFunc)
Registers handlers, and prepends BaseURL to the paths, so that the paths can be served under a prefix.
Types ¶
type Account ¶
type Account struct { // Address the account public key Address string `json:"address"` // Amount total number of MicroAlgos in the account Amount uint64 `json:"amount"` // AmountWithoutPendingRewards specifies the amount of MicroAlgos in the account, without the pending rewards. AmountWithoutPendingRewards uint64 `json:"amount-without-pending-rewards"` // AppsLocalState application local data stored in this account. // // Note the raw object uses `map[int] -> AppLocalState` for this type. AppsLocalState *[]ApplicationLocalState `json:"apps-local-state,omitempty"` // AppsTotalExtraPages the sum of all extra application program pages for this account. AppsTotalExtraPages *uint64 `json:"apps-total-extra-pages,omitempty"` // AppsTotalSchema Specifies maximums on the number of each type that may be stored. AppsTotalSchema *ApplicationStateSchema `json:"apps-total-schema,omitempty"` // Assets assets held by this account. // // Note the raw object uses `map[int] -> AssetHolding` for this type. Assets *[]AssetHolding `json:"assets,omitempty"` // AuthAddr The address against which signing should be checked. If empty, the address of the current account is used. This field can be updated in any transaction by setting the RekeyTo field. AuthAddr *string `json:"auth-addr,omitempty"` // ClosedAtRound Round during which this account was most recently closed. ClosedAtRound *uint64 `json:"closed-at-round,omitempty"` // CreatedApps parameters of applications created by this account including app global data. // // Note: the raw account uses `map[int] -> AppParams` for this type. CreatedApps *[]Application `json:"created-apps,omitempty"` // CreatedAssets parameters of assets created by this account. // // Note: the raw account uses `map[int] -> Asset` for this type. CreatedAssets *[]Asset `json:"created-assets,omitempty"` // CreatedAtRound Round during which this account first appeared in a transaction. CreatedAtRound *uint64 `json:"created-at-round,omitempty"` // Deleted Whether or not this account is currently closed. Deleted *bool `json:"deleted,omitempty"` // IncentiveEligible can the account receive block incentives if its balance is in range at proposal time. IncentiveEligible *bool `json:"incentive-eligible,omitempty"` // LastHeartbeat The round in which this account last went online, or explicitly renewed their online status. LastHeartbeat *uint64 `json:"last-heartbeat,omitempty"` // LastProposed The round in which this account last proposed the block. LastProposed *uint64 `json:"last-proposed,omitempty"` // MinBalance MicroAlgo balance required by the account. // // The requirement grows based on asset and application usage. MinBalance uint64 `json:"min-balance"` // Participation AccountParticipation describes the parameters used by this account in consensus protocol. Participation *AccountParticipation `json:"participation,omitempty"` // PendingRewards amount of MicroAlgos of pending rewards in this account. PendingRewards uint64 `json:"pending-rewards"` // RewardBase used as part of the rewards computation. Only applicable to accounts which are participating. RewardBase *uint64 `json:"reward-base,omitempty"` // Rewards total rewards of MicroAlgos the account has received, including pending rewards. Rewards uint64 `json:"rewards"` // Round The round for which this information is relevant. Round uint64 `json:"round"` // SigType the type of signature used by this account, must be one of: // * sig // * msig // * lsig // * or null if unknown SigType *AccountSigType `json:"sig-type,omitempty"` // Status voting status of the account's MicroAlgos // * Offline - indicates that the associated account is delegated. // * Online - indicates that the associated account used as part of the delegation pool. // * NotParticipating - indicates that the associated account is neither a delegator nor a delegate. Status string `json:"status"` // TotalAppsOptedIn The count of all applications that have been opted in, equivalent to the count of application local data (AppLocalState objects) stored in this account. TotalAppsOptedIn uint64 `json:"total-apps-opted-in"` // TotalAssetsOptedIn The count of all assets that have been opted in, equivalent to the count of AssetHolding objects held by this account. TotalAssetsOptedIn uint64 `json:"total-assets-opted-in"` // TotalBoxBytes For app-accounts only. The total number of bytes allocated for the keys and values of boxes which belong to the associated application. TotalBoxBytes uint64 `json:"total-box-bytes"` // TotalBoxes For app-accounts only. The total number of boxes which belong to the associated application. TotalBoxes uint64 `json:"total-boxes"` // TotalCreatedApps The count of all apps (AppParams objects) created by this account. TotalCreatedApps uint64 `json:"total-created-apps"` // TotalCreatedAssets The count of all assets (AssetParams objects) created by this account. TotalCreatedAssets uint64 `json:"total-created-assets"` }
Account Account information at a given round.
Definition: data/basics/userBalance.go : AccountData
type AccountParticipation ¶
type AccountParticipation struct { // SelectionParticipationKey Selection public key (if any) currently registered for this round. SelectionParticipationKey []byte `json:"selection-participation-key"` // StateProofKey Root of the state proof key (if any) StateProofKey *[]byte `json:"state-proof-key,omitempty"` // VoteFirstValid First round for which this participation is valid. VoteFirstValid uint64 `json:"vote-first-valid"` // VoteKeyDilution Number of subkeys in each batch of participation keys. VoteKeyDilution uint64 `json:"vote-key-dilution"` // VoteLastValid Last round for which this participation is valid. VoteLastValid uint64 `json:"vote-last-valid"` // VoteParticipationKey root participation public key (if any) currently registered for this round. VoteParticipationKey []byte `json:"vote-participation-key"` }
AccountParticipation AccountParticipation describes the parameters used by this account in consensus protocol.
type AccountResponse ¶
type AccountResponse struct { // Account Account information at a given round. // // Definition: // data/basics/userBalance.go : AccountData Account Account `json:"account"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` }
AccountResponse defines model for AccountResponse.
type AccountSigType ¶
type AccountSigType string
AccountSigType the type of signature used by this account, must be one of: * sig * msig * lsig * or null if unknown
const ( AccountSigTypeLsig AccountSigType = "lsig" AccountSigTypeMsig AccountSigType = "msig" AccountSigTypeSig AccountSigType = "sig" )
Defines values for AccountSigType.
type AccountStateDelta ¶
type AccountStateDelta struct { Address string `json:"address"` // Delta Application state delta. Delta StateDelta `json:"delta"` }
AccountStateDelta Application state delta.
type AccountsResponse ¶
type AccountsResponse struct { Accounts []Account `json:"accounts"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
AccountsResponse defines model for AccountsResponse.
type AddressRole ¶
type AddressRole string
AddressRole defines model for address-role.
const ( AddressRoleFreezeTarget AddressRole = "freeze-target" AddressRoleReceiver AddressRole = "receiver" AddressRoleSender AddressRole = "sender" )
Defines values for AddressRole.
type Application ¶
type Application struct { // CreatedAtRound Round when this application was created. CreatedAtRound *uint64 `json:"created-at-round,omitempty"` // Deleted Whether or not this application is currently deleted. Deleted *bool `json:"deleted,omitempty"` // DeletedAtRound Round when this application was deleted. DeletedAtRound *uint64 `json:"deleted-at-round,omitempty"` // Id application index. Id uint64 `json:"id"` // Params Stores the global information associated with an application. Params ApplicationParams `json:"params"` }
Application Application index and its parameters
type ApplicationLocalState ¶
type ApplicationLocalState struct { // ClosedOutAtRound Round when account closed out of the application. ClosedOutAtRound *uint64 `json:"closed-out-at-round,omitempty"` // Deleted Whether or not the application local state is currently deleted from its account. Deleted *bool `json:"deleted,omitempty"` // Id The application which this local state is for. Id uint64 `json:"id"` // KeyValue Represents a key-value store for use in an application. KeyValue *TealKeyValueStore `json:"key-value,omitempty"` // OptedInAtRound Round when the account opted into the application. OptedInAtRound *uint64 `json:"opted-in-at-round,omitempty"` // Schema Specifies maximums on the number of each type that may be stored. Schema ApplicationStateSchema `json:"schema"` }
ApplicationLocalState Stores local state associated with an application.
type ApplicationLocalStatesResponse ¶
type ApplicationLocalStatesResponse struct { AppsLocalStates []ApplicationLocalState `json:"apps-local-states"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
ApplicationLocalStatesResponse defines model for ApplicationLocalStatesResponse.
type ApplicationLogData ¶
type ApplicationLogData struct { // Logs Logs for the application being executed by the transaction. Logs [][]byte `json:"logs"` // Txid Transaction ID Txid string `json:"txid"` }
ApplicationLogData Stores the global information associated with an application.
type ApplicationLogsResponse ¶
type ApplicationLogsResponse struct { // ApplicationId \[appidx\] application index. ApplicationId uint64 `json:"application-id"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` LogData *[]ApplicationLogData `json:"log-data,omitempty"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
ApplicationLogsResponse defines model for ApplicationLogsResponse.
type ApplicationParams ¶
type ApplicationParams struct { // ApprovalProgram approval program. ApprovalProgram []byte `json:"approval-program"` // ClearStateProgram clear state program. ClearStateProgram []byte `json:"clear-state-program"` // Creator The address that created this application. This is the address where the parameters and global state for this application can be found. Creator *string `json:"creator,omitempty"` // ExtraProgramPages the number of extra program pages available to this app. ExtraProgramPages *uint64 `json:"extra-program-pages,omitempty"` // GlobalState Represents a key-value store for use in an application. GlobalState *TealKeyValueStore `json:"global-state,omitempty"` // GlobalStateSchema Specifies maximums on the number of each type that may be stored. GlobalStateSchema *ApplicationStateSchema `json:"global-state-schema,omitempty"` // LocalStateSchema Specifies maximums on the number of each type that may be stored. LocalStateSchema *ApplicationStateSchema `json:"local-state-schema,omitempty"` }
ApplicationParams Stores the global information associated with an application.
type ApplicationResponse ¶
type ApplicationResponse struct { // Application Application index and its parameters Application *Application `json:"application,omitempty"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` }
ApplicationResponse defines model for ApplicationResponse.
type ApplicationStateSchema ¶
type ApplicationStateSchema struct { // NumByteSlice number of byte slices. NumByteSlice uint64 `json:"num-byte-slice"` // NumUint number of uints. NumUint uint64 `json:"num-uint"` }
ApplicationStateSchema Specifies maximums on the number of each type that may be stored.
type ApplicationsResponse ¶
type ApplicationsResponse struct { Applications []Application `json:"applications"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
ApplicationsResponse defines model for ApplicationsResponse.
type Asset ¶
type Asset struct { // CreatedAtRound Round during which this asset was created. CreatedAtRound *uint64 `json:"created-at-round,omitempty"` // Deleted Whether or not this asset is currently deleted. Deleted *bool `json:"deleted,omitempty"` // DestroyedAtRound Round during which this asset was destroyed. DestroyedAtRound *uint64 `json:"destroyed-at-round,omitempty"` // Index unique asset identifier Index uint64 `json:"index"` // Params AssetParams specifies the parameters for an asset. // // \[apar\] when part of an AssetConfig transaction. // // Definition: // data/transactions/asset.go : AssetParams Params AssetParams `json:"params"` }
Asset Specifies both the unique identifier and the parameters for an asset
type AssetBalancesResponse ¶
type AssetBalancesResponse struct { Balances []MiniAssetHolding `json:"balances"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
AssetBalancesResponse defines model for AssetBalancesResponse.
type AssetHolding ¶
type AssetHolding struct { // Amount number of units held. Amount uint64 `json:"amount"` // AssetId Asset ID of the holding. AssetId uint64 `json:"asset-id"` // Deleted Whether or not the asset holding is currently deleted from its account. Deleted *bool `json:"deleted,omitempty"` // IsFrozen whether or not the holding is frozen. IsFrozen bool `json:"is-frozen"` // OptedInAtRound Round during which the account opted into this asset holding. OptedInAtRound *uint64 `json:"opted-in-at-round,omitempty"` // OptedOutAtRound Round during which the account opted out of this asset holding. OptedOutAtRound *uint64 `json:"opted-out-at-round,omitempty"` }
AssetHolding Describes an asset held by an account.
Definition: data/basics/userBalance.go : AssetHolding
type AssetHoldingsResponse ¶
type AssetHoldingsResponse struct { Assets []AssetHolding `json:"assets"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
AssetHoldingsResponse defines model for AssetHoldingsResponse.
type AssetParams ¶
type AssetParams struct { // Clawback Address of account used to clawback holdings of this asset. If empty, clawback is not permitted. Clawback *string `json:"clawback,omitempty"` // Creator The address that created this asset. This is the address where the parameters for this asset can be found, and also the address where unwanted asset units can be sent in the worst case. Creator string `json:"creator"` // Decimals The number of digits to use after the decimal point when displaying this asset. If 0, the asset is not divisible. If 1, the base unit of the asset is in tenths. If 2, the base unit of the asset is in hundredths, and so on. This value must be between 0 and 19 (inclusive). Decimals uint64 `json:"decimals"` // DefaultFrozen Whether holdings of this asset are frozen by default. DefaultFrozen *bool `json:"default-frozen,omitempty"` // Freeze Address of account used to freeze holdings of this asset. If empty, freezing is not permitted. Freeze *string `json:"freeze,omitempty"` // Manager Address of account used to manage the keys of this asset and to destroy it. Manager *string `json:"manager,omitempty"` // MetadataHash A commitment to some unspecified asset metadata. The format of this metadata is up to the application. MetadataHash *[]byte `json:"metadata-hash,omitempty"` // Name Name of this asset, as supplied by the creator. Included only when the asset name is composed of printable utf-8 characters. Name *string `json:"name,omitempty"` // NameB64 Base64 encoded name of this asset, as supplied by the creator. NameB64 *[]byte `json:"name-b64,omitempty"` // Reserve Address of account holding reserve (non-minted) units of this asset. Reserve *string `json:"reserve,omitempty"` // Total The total number of units of this asset. Total uint64 `json:"total"` // UnitName Name of a unit of this asset, as supplied by the creator. Included only when the name of a unit of this asset is composed of printable utf-8 characters. UnitName *string `json:"unit-name,omitempty"` // UnitNameB64 Base64 encoded name of a unit of this asset, as supplied by the creator. UnitNameB64 *[]byte `json:"unit-name-b64,omitempty"` // Url URL where more information about the asset can be retrieved. Included only when the URL is composed of printable utf-8 characters. Url *string `json:"url,omitempty"` // UrlB64 Base64 encoded URL where more information about the asset can be retrieved. UrlB64 *[]byte `json:"url-b64,omitempty"` }
AssetParams AssetParams specifies the parameters for an asset.
\[apar\] when part of an AssetConfig transaction.
Definition: data/transactions/asset.go : AssetParams
type AssetResponse ¶
type AssetResponse struct { // Asset Specifies both the unique identifier and the parameters for an asset Asset Asset `json:"asset"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` }
AssetResponse defines model for AssetResponse.
type AssetsResponse ¶
type AssetsResponse struct { Assets []Asset `json:"assets"` // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
AssetsResponse defines model for AssetsResponse.
type Block ¶
type Block struct { // Bonus the potential bonus payout for this block. Bonus *uint64 `json:"bonus,omitempty"` // FeesCollected the sum of all fees paid by transactions in this block. FeesCollected *uint64 `json:"fees-collected,omitempty"` // GenesisHash \[gh\] hash to which this block belongs. GenesisHash []byte `json:"genesis-hash"` // GenesisId \[gen\] ID to which this block belongs. GenesisId string `json:"genesis-id"` // ParticipationUpdates Participation account data that needs to be checked/acted on by the network. ParticipationUpdates *ParticipationUpdates `json:"participation-updates,omitempty"` // PreviousBlockHash \[prev\] Previous block hash. PreviousBlockHash []byte `json:"previous-block-hash"` // Proposer the proposer of this block. Proposer *string `json:"proposer,omitempty"` // ProposerPayout the actual amount transferred to the proposer from the fee sink. ProposerPayout *uint64 `json:"proposer-payout,omitempty"` // Rewards Fields relating to rewards, Rewards *BlockRewards `json:"rewards,omitempty"` // Round \[rnd\] Current round on which this block was appended to the chain. Round uint64 `json:"round"` // Seed \[seed\] Sortition seed. Seed []byte `json:"seed"` // StateProofTracking Tracks the status of state proofs. StateProofTracking *[]StateProofTracking `json:"state-proof-tracking,omitempty"` // Timestamp \[ts\] Block creation timestamp in seconds since eposh Timestamp uint64 `json:"timestamp"` // Transactions \[txns\] list of transactions corresponding to a given round. Transactions *[]Transaction `json:"transactions,omitempty"` // TransactionsRoot \[txn\] TransactionsRoot authenticates the set of transactions appearing in the block. More specifically, it's the root of a merkle tree whose leaves are the block's Txids, in lexicographic order. For the empty block, it's 0. Note that the TxnRoot does not authenticate the signatures on the transactions, only the transactions themselves. Two blocks with the same transactions but in a different order and with different signatures will have the same TxnRoot. TransactionsRoot []byte `json:"transactions-root"` // TransactionsRootSha256 \[txn256\] TransactionsRootSHA256 is an auxiliary TransactionRoot, built using a vector commitment instead of a merkle tree, and SHA256 hash function instead of the default SHA512_256. This commitment can be used on environments where only the SHA256 function exists. TransactionsRootSha256 []byte `json:"transactions-root-sha256"` // TxnCounter \[tc\] TxnCounter counts the number of transactions committed in the ledger, from the time at which support for this feature was introduced. // // Specifically, TxnCounter is the number of the next transaction that will be committed after this block. It is 0 when no transactions have ever been committed (since TxnCounter started being supported). TxnCounter *uint64 `json:"txn-counter,omitempty"` // UpgradeState Fields relating to a protocol upgrade. UpgradeState *BlockUpgradeState `json:"upgrade-state,omitempty"` // UpgradeVote Fields relating to voting for a protocol upgrade. UpgradeVote *BlockUpgradeVote `json:"upgrade-vote,omitempty"` }
Block Block information.
Definition: data/bookkeeping/block.go : Block
type BlockResponse ¶
type BlockResponse = Block
BlockResponse Block information.
Definition: data/bookkeeping/block.go : Block
type BlockRewards ¶
type BlockRewards struct { // FeeSink \[fees\] accepts transaction fees, it can only spend to the incentive pool. FeeSink string `json:"fee-sink"` // RewardsCalculationRound \[rwcalr\] number of leftover MicroAlgos after the distribution of rewards-rate MicroAlgos for every reward unit in the next round. RewardsCalculationRound uint64 `json:"rewards-calculation-round"` // RewardsLevel \[earn\] How many rewards, in MicroAlgos, have been distributed to each RewardUnit of MicroAlgos since genesis. RewardsLevel uint64 `json:"rewards-level"` // RewardsPool \[rwd\] accepts periodic injections from the fee-sink and continually redistributes them as rewards. RewardsPool string `json:"rewards-pool"` // RewardsRate \[rate\] Number of new MicroAlgos added to the participation stake from rewards at the next round. RewardsRate uint64 `json:"rewards-rate"` // RewardsResidue \[frac\] Number of leftover MicroAlgos after the distribution of RewardsRate/rewardUnits MicroAlgos for every reward unit in the next round. RewardsResidue uint64 `json:"rewards-residue"` }
BlockRewards Fields relating to rewards,
type BlockUpgradeState ¶
type BlockUpgradeState struct { // CurrentProtocol \[proto\] The current protocol version. CurrentProtocol string `json:"current-protocol"` // NextProtocol \[nextproto\] The next proposed protocol version. NextProtocol *string `json:"next-protocol,omitempty"` // NextProtocolApprovals \[nextyes\] Number of blocks which approved the protocol upgrade. NextProtocolApprovals *uint64 `json:"next-protocol-approvals,omitempty"` // NextProtocolSwitchOn \[nextswitch\] Round on which the protocol upgrade will take effect. NextProtocolSwitchOn *uint64 `json:"next-protocol-switch-on,omitempty"` // NextProtocolVoteBefore \[nextbefore\] Deadline round for this protocol upgrade (No votes will be consider after this round). NextProtocolVoteBefore *uint64 `json:"next-protocol-vote-before,omitempty"` }
BlockUpgradeState Fields relating to a protocol upgrade.
type BlockUpgradeVote ¶
type BlockUpgradeVote struct { // UpgradeApprove \[upgradeyes\] Indicates a yes vote for the current proposal. UpgradeApprove *bool `json:"upgrade-approve,omitempty"` // UpgradeDelay \[upgradedelay\] Indicates the time between acceptance and execution. UpgradeDelay *uint64 `json:"upgrade-delay,omitempty"` // UpgradePropose \[upgradeprop\] Indicates a proposed upgrade. UpgradePropose *string `json:"upgrade-propose,omitempty"` }
BlockUpgradeVote Fields relating to voting for a protocol upgrade.
type Box ¶
type Box struct { // Name \[name\] box name, base64 encoded Name []byte `json:"name"` // Round The round for which this information is relevant Round uint64 `json:"round"` // Value \[value\] box value, base64 encoded. Value []byte `json:"value"` }
Box Box name and its content.
type BoxDescriptor ¶
type BoxDescriptor struct { // Name Base64 encoded box name Name []byte `json:"name"` }
BoxDescriptor Box descriptor describes an app box without a value.
type BoxesResponse ¶
type BoxesResponse struct { // ApplicationId \[appidx\] application index. ApplicationId uint64 `json:"application-id"` Boxes []BoxDescriptor `json:"boxes"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` }
BoxesResponse defines model for BoxesResponse.
type CurrencyGreaterThan ¶
type CurrencyGreaterThan uint64
CurrencyGreaterThan defines model for currency-greater-than.
type CurrencyLessThan ¶
type CurrencyLessThan uint64
CurrencyLessThan defines model for currency-less-than.
type EchoRouter ¶
type EchoRouter interface { CONNECT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route DELETE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route GET(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route HEAD(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route OPTIONS(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route PATCH(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route POST(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route PUT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route TRACE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route }
This is a simple interface which specifies echo.Route addition functions which are present on both echo.Echo and echo.Group, since we want to allow using either of them for path registration
type ErrorResponse ¶
type ErrorResponse struct { Data *map[string]interface{} `json:"data,omitempty"` Message string `json:"message"` }
ErrorResponse defines model for ErrorResponse.
type EvalDelta ¶
type EvalDelta struct { // Action \[at\] delta action. Action uint64 `json:"action"` // Bytes \[bs\] bytes value. Bytes *string `json:"bytes,omitempty"` // Uint \[ui\] uint value. Uint *uint64 `json:"uint,omitempty"` }
EvalDelta Represents a TEAL value delta.
type EvalDeltaKeyValue ¶
type EvalDeltaKeyValue struct { Key string `json:"key"` // Value Represents a TEAL value delta. Value EvalDelta `json:"value"` }
EvalDeltaKeyValue Key-value pairs for StateDelta.
type HashFactory ¶
type HashFactory struct { // HashType \[t\] HashType *uint64 `json:"hash-type,omitempty"` }
HashFactory defines model for HashFactory.
type Hashtype ¶
type Hashtype string
Hashtype The type of hash function used to create the proof, must be one of: * sha512_256 * sha256
type HealthCheck ¶
type HealthCheck struct { Data *map[string]interface{} `json:"data,omitempty"` DbAvailable bool `json:"db-available"` Errors *[]string `json:"errors,omitempty"` IsMigrating bool `json:"is-migrating"` Message string `json:"message"` Round uint64 `json:"round"` // Version Current version. Version string `json:"version"` }
HealthCheck A health check response.
type HealthCheckResponse ¶
type HealthCheckResponse = HealthCheck
HealthCheckResponse A health check response.
type IndexerStateProofMessage ¶
type IndexerStateProofMessage struct { // BlockHeadersCommitment \[b\] BlockHeadersCommitment *[]byte `json:"block-headers-commitment,omitempty"` // FirstAttestedRound \[f\] FirstAttestedRound *uint64 `json:"first-attested-round,omitempty"` // LatestAttestedRound \[l\] LatestAttestedRound *uint64 `json:"latest-attested-round,omitempty"` // LnProvenWeight \[P\] LnProvenWeight *uint64 `json:"ln-proven-weight,omitempty"` // VotersCommitment \[v\] VotersCommitment *[]byte `json:"voters-commitment,omitempty"` }
IndexerStateProofMessage defines model for IndexerStateProofMessage.
type LookupAccountAppLocalStatesParams ¶
type LookupAccountAppLocalStatesParams struct { // ApplicationId Application ID ApplicationId *uint64 `form:"application-id,omitempty" json:"application-id,omitempty"` // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` }
LookupAccountAppLocalStatesParams defines parameters for LookupAccountAppLocalStates.
type LookupAccountAssetsParams ¶
type LookupAccountAssetsParams struct { // AssetId Asset ID AssetId *uint64 `form:"asset-id,omitempty" json:"asset-id,omitempty"` // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` }
LookupAccountAssetsParams defines parameters for LookupAccountAssets.
type LookupAccountByIDParams ¶
type LookupAccountByIDParams struct { // Round Deprecated and disallowed. This parameter used to include results for a specified round. Requests with this parameter set are now rejected. Round *uint64 `form:"round,omitempty" json:"round,omitempty"` // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Exclude Exclude additional items such as asset holdings, application local data stored for this account, asset parameters created by this account, and application parameters created by this account. Exclude *[]LookupAccountByIDParamsExclude `form:"exclude,omitempty" json:"exclude,omitempty"` }
LookupAccountByIDParams defines parameters for LookupAccountByID.
type LookupAccountByIDParamsExclude ¶
type LookupAccountByIDParamsExclude string
LookupAccountByIDParamsExclude defines parameters for LookupAccountByID.
const ( LookupAccountByIDParamsExcludeAll LookupAccountByIDParamsExclude = "all" LookupAccountByIDParamsExcludeAppsLocalState LookupAccountByIDParamsExclude = "apps-local-state" LookupAccountByIDParamsExcludeAssets LookupAccountByIDParamsExclude = "assets" LookupAccountByIDParamsExcludeCreatedApps LookupAccountByIDParamsExclude = "created-apps" LookupAccountByIDParamsExcludeCreatedAssets LookupAccountByIDParamsExclude = "created-assets" LookupAccountByIDParamsExcludeNone LookupAccountByIDParamsExclude = "none" )
Defines values for LookupAccountByIDParamsExclude.
type LookupAccountCreatedApplicationsParams ¶
type LookupAccountCreatedApplicationsParams struct { // ApplicationId Application ID ApplicationId *uint64 `form:"application-id,omitempty" json:"application-id,omitempty"` // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` }
LookupAccountCreatedApplicationsParams defines parameters for LookupAccountCreatedApplications.
type LookupAccountCreatedAssetsParams ¶
type LookupAccountCreatedAssetsParams struct { // AssetId Asset ID AssetId *uint64 `form:"asset-id,omitempty" json:"asset-id,omitempty"` // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` }
LookupAccountCreatedAssetsParams defines parameters for LookupAccountCreatedAssets.
type LookupAccountTransactionsParams ¶
type LookupAccountTransactionsParams struct { // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` // NotePrefix Specifies a prefix which must be contained in the note field. NotePrefix *string `form:"note-prefix,omitempty" json:"note-prefix,omitempty"` TxType *LookupAccountTransactionsParamsTxType `form:"tx-type,omitempty" json:"tx-type,omitempty"` // SigType SigType filters just results using the specified type of signature: // * sig - Standard // * msig - MultiSig // * lsig - LogicSig SigType *LookupAccountTransactionsParamsSigType `form:"sig-type,omitempty" json:"sig-type,omitempty"` // Txid Lookup the specific transaction by ID. Txid *string `form:"txid,omitempty" json:"txid,omitempty"` // Round Include results for the specified round. Round *uint64 `form:"round,omitempty" json:"round,omitempty"` // MinRound Include results at or after the specified min-round. MinRound *uint64 `form:"min-round,omitempty" json:"min-round,omitempty"` // MaxRound Include results at or before the specified max-round. MaxRound *uint64 `form:"max-round,omitempty" json:"max-round,omitempty"` // AssetId Asset ID AssetId *uint64 `form:"asset-id,omitempty" json:"asset-id,omitempty"` // BeforeTime Include results before the given time. Must be an RFC 3339 formatted string. BeforeTime *time.Time `form:"before-time,omitempty" json:"before-time,omitempty"` // AfterTime Include results after the given time. Must be an RFC 3339 formatted string. AfterTime *time.Time `form:"after-time,omitempty" json:"after-time,omitempty"` // CurrencyGreaterThan Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyGreaterThan *uint64 `form:"currency-greater-than,omitempty" json:"currency-greater-than,omitempty"` // CurrencyLessThan Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyLessThan *uint64 `form:"currency-less-than,omitempty" json:"currency-less-than,omitempty"` // RekeyTo Include results which include the rekey-to field. RekeyTo *bool `form:"rekey-to,omitempty" json:"rekey-to,omitempty"` }
LookupAccountTransactionsParams defines parameters for LookupAccountTransactions.
type LookupAccountTransactionsParamsSigType ¶
type LookupAccountTransactionsParamsSigType string
LookupAccountTransactionsParamsSigType defines parameters for LookupAccountTransactions.
const ( LookupAccountTransactionsParamsSigTypeLsig LookupAccountTransactionsParamsSigType = "lsig" LookupAccountTransactionsParamsSigTypeMsig LookupAccountTransactionsParamsSigType = "msig" LookupAccountTransactionsParamsSigTypeSig LookupAccountTransactionsParamsSigType = "sig" )
Defines values for LookupAccountTransactionsParamsSigType.
type LookupAccountTransactionsParamsTxType ¶
type LookupAccountTransactionsParamsTxType string
LookupAccountTransactionsParamsTxType defines parameters for LookupAccountTransactions.
const ( LookupAccountTransactionsParamsTxTypeAcfg LookupAccountTransactionsParamsTxType = "acfg" LookupAccountTransactionsParamsTxTypeAfrz LookupAccountTransactionsParamsTxType = "afrz" LookupAccountTransactionsParamsTxTypeAppl LookupAccountTransactionsParamsTxType = "appl" LookupAccountTransactionsParamsTxTypeAxfer LookupAccountTransactionsParamsTxType = "axfer" LookupAccountTransactionsParamsTxTypeKeyreg LookupAccountTransactionsParamsTxType = "keyreg" LookupAccountTransactionsParamsTxTypePay LookupAccountTransactionsParamsTxType = "pay" LookupAccountTransactionsParamsTxTypeStpf LookupAccountTransactionsParamsTxType = "stpf" )
Defines values for LookupAccountTransactionsParamsTxType.
type LookupApplicationBoxByIDAndNameParams ¶
type LookupApplicationBoxByIDAndNameParams struct { // Name A box name in goal-arg form 'encoding:value'. For ints, use the form 'int:1234'. For raw bytes, use the form 'b64:A=='. For printable strings, use the form 'str:hello'. For addresses, use the form 'addr:XYZ...'. Name string `form:"name" json:"name"` }
LookupApplicationBoxByIDAndNameParams defines parameters for LookupApplicationBoxByIDAndName.
type LookupApplicationByIDParams ¶
type LookupApplicationByIDParams struct { // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` }
LookupApplicationByIDParams defines parameters for LookupApplicationByID.
type LookupApplicationLogsByIDParams ¶
type LookupApplicationLogsByIDParams struct { // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` // Txid Lookup the specific transaction by ID. Txid *string `form:"txid,omitempty" json:"txid,omitempty"` // MinRound Include results at or after the specified min-round. MinRound *uint64 `form:"min-round,omitempty" json:"min-round,omitempty"` // MaxRound Include results at or before the specified max-round. MaxRound *uint64 `form:"max-round,omitempty" json:"max-round,omitempty"` // SenderAddress Only include transactions with this sender address. SenderAddress *string `form:"sender-address,omitempty" json:"sender-address,omitempty"` }
LookupApplicationLogsByIDParams defines parameters for LookupApplicationLogsByID.
type LookupAssetBalancesParams ¶
type LookupAssetBalancesParams struct { // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` // CurrencyGreaterThan Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyGreaterThan *uint64 `form:"currency-greater-than,omitempty" json:"currency-greater-than,omitempty"` // CurrencyLessThan Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyLessThan *uint64 `form:"currency-less-than,omitempty" json:"currency-less-than,omitempty"` }
LookupAssetBalancesParams defines parameters for LookupAssetBalances.
type LookupAssetByIDParams ¶
type LookupAssetByIDParams struct { // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` }
LookupAssetByIDParams defines parameters for LookupAssetByID.
type LookupAssetTransactionsParams ¶
type LookupAssetTransactionsParams struct { // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` // NotePrefix Specifies a prefix which must be contained in the note field. NotePrefix *string `form:"note-prefix,omitempty" json:"note-prefix,omitempty"` TxType *LookupAssetTransactionsParamsTxType `form:"tx-type,omitempty" json:"tx-type,omitempty"` // SigType SigType filters just results using the specified type of signature: // * sig - Standard // * msig - MultiSig // * lsig - LogicSig SigType *LookupAssetTransactionsParamsSigType `form:"sig-type,omitempty" json:"sig-type,omitempty"` // Txid Lookup the specific transaction by ID. Txid *string `form:"txid,omitempty" json:"txid,omitempty"` // Round Include results for the specified round. Round *uint64 `form:"round,omitempty" json:"round,omitempty"` // MinRound Include results at or after the specified min-round. MinRound *uint64 `form:"min-round,omitempty" json:"min-round,omitempty"` // MaxRound Include results at or before the specified max-round. MaxRound *uint64 `form:"max-round,omitempty" json:"max-round,omitempty"` // BeforeTime Include results before the given time. Must be an RFC 3339 formatted string. BeforeTime *time.Time `form:"before-time,omitempty" json:"before-time,omitempty"` // AfterTime Include results after the given time. Must be an RFC 3339 formatted string. AfterTime *time.Time `form:"after-time,omitempty" json:"after-time,omitempty"` // CurrencyGreaterThan Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyGreaterThan *uint64 `form:"currency-greater-than,omitempty" json:"currency-greater-than,omitempty"` // CurrencyLessThan Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyLessThan *uint64 `form:"currency-less-than,omitempty" json:"currency-less-than,omitempty"` // Address Only include transactions with this address in one of the transaction fields. Address *string `form:"address,omitempty" json:"address,omitempty"` // AddressRole Combine with the address parameter to define what type of address to search for. AddressRole *LookupAssetTransactionsParamsAddressRole `form:"address-role,omitempty" json:"address-role,omitempty"` // ExcludeCloseTo Combine with address and address-role parameters to define what type of address to search for. The close to fields are normally treated as a receiver, if you would like to exclude them set this parameter to true. ExcludeCloseTo *bool `form:"exclude-close-to,omitempty" json:"exclude-close-to,omitempty"` // RekeyTo Include results which include the rekey-to field. RekeyTo *bool `form:"rekey-to,omitempty" json:"rekey-to,omitempty"` }
LookupAssetTransactionsParams defines parameters for LookupAssetTransactions.
type LookupAssetTransactionsParamsAddressRole ¶
type LookupAssetTransactionsParamsAddressRole string
LookupAssetTransactionsParamsAddressRole defines parameters for LookupAssetTransactions.
const ( LookupAssetTransactionsParamsAddressRoleFreezeTarget LookupAssetTransactionsParamsAddressRole = "freeze-target" LookupAssetTransactionsParamsAddressRoleReceiver LookupAssetTransactionsParamsAddressRole = "receiver" LookupAssetTransactionsParamsAddressRoleSender LookupAssetTransactionsParamsAddressRole = "sender" )
Defines values for LookupAssetTransactionsParamsAddressRole.
type LookupAssetTransactionsParamsSigType ¶
type LookupAssetTransactionsParamsSigType string
LookupAssetTransactionsParamsSigType defines parameters for LookupAssetTransactions.
const ( LookupAssetTransactionsParamsSigTypeLsig LookupAssetTransactionsParamsSigType = "lsig" LookupAssetTransactionsParamsSigTypeMsig LookupAssetTransactionsParamsSigType = "msig" LookupAssetTransactionsParamsSigTypeSig LookupAssetTransactionsParamsSigType = "sig" )
Defines values for LookupAssetTransactionsParamsSigType.
type LookupAssetTransactionsParamsTxType ¶
type LookupAssetTransactionsParamsTxType string
LookupAssetTransactionsParamsTxType defines parameters for LookupAssetTransactions.
const ( LookupAssetTransactionsParamsTxTypeAcfg LookupAssetTransactionsParamsTxType = "acfg" LookupAssetTransactionsParamsTxTypeAfrz LookupAssetTransactionsParamsTxType = "afrz" LookupAssetTransactionsParamsTxTypeAppl LookupAssetTransactionsParamsTxType = "appl" LookupAssetTransactionsParamsTxTypeAxfer LookupAssetTransactionsParamsTxType = "axfer" LookupAssetTransactionsParamsTxTypeKeyreg LookupAssetTransactionsParamsTxType = "keyreg" LookupAssetTransactionsParamsTxTypePay LookupAssetTransactionsParamsTxType = "pay" LookupAssetTransactionsParamsTxTypeStpf LookupAssetTransactionsParamsTxType = "stpf" )
Defines values for LookupAssetTransactionsParamsTxType.
type LookupBlockParams ¶
type LookupBlockParams struct { // HeaderOnly Header only flag. When this is set to true, returned block does not contain the transactions HeaderOnly *bool `form:"header-only,omitempty" json:"header-only,omitempty"` }
LookupBlockParams defines parameters for LookupBlock.
type MerkleArrayProof ¶
type MerkleArrayProof struct { HashFactory *HashFactory `json:"hash-factory,omitempty"` // Path \[pth\] Path *[][]byte `json:"path,omitempty"` // TreeDepth \[td\] TreeDepth *uint64 `json:"tree-depth,omitempty"` }
MerkleArrayProof defines model for MerkleArrayProof.
type MiniAssetHolding ¶
type MiniAssetHolding struct { Address string `json:"address"` Amount uint64 `json:"amount"` // Deleted Whether or not this asset holding is currently deleted from its account. Deleted *bool `json:"deleted,omitempty"` IsFrozen bool `json:"is-frozen"` // OptedInAtRound Round during which the account opted into the asset. OptedInAtRound *uint64 `json:"opted-in-at-round,omitempty"` // OptedOutAtRound Round during which the account opted out of the asset. OptedOutAtRound *uint64 `json:"opted-out-at-round,omitempty"` }
MiniAssetHolding A simplified version of AssetHolding
type OnCompletion ¶
type OnCompletion string
OnCompletion \[apan\] defines the what additional actions occur with the transaction.
Valid types: * noop * optin * closeout * clear * update * update * delete
const ( Clear OnCompletion = "clear" Closeout OnCompletion = "closeout" Delete OnCompletion = "delete" Noop OnCompletion = "noop" Optin OnCompletion = "optin" Update OnCompletion = "update" )
Defines values for OnCompletion.
type ParticipationUpdates ¶
type ParticipationUpdates struct { // AbsentParticipationAccounts \[partupabs\] a list of online accounts that need to be suspended. AbsentParticipationAccounts *[]string `json:"absent-participation-accounts,omitempty"` // ExpiredParticipationAccounts \[partupdrmv\] a list of online accounts that needs to be converted to offline since their participation key expired. ExpiredParticipationAccounts *[]string `json:"expired-participation-accounts,omitempty"` }
ParticipationUpdates Participation account data that needs to be checked/acted on by the network.
type SearchForAccountsParams ¶
type SearchForAccountsParams struct { // AssetId Asset ID AssetId *uint64 `form:"asset-id,omitempty" json:"asset-id,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` // CurrencyGreaterThan Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyGreaterThan *uint64 `form:"currency-greater-than,omitempty" json:"currency-greater-than,omitempty"` // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Exclude Exclude additional items such as asset holdings, application local data stored for this account, asset parameters created by this account, and application parameters created by this account. Exclude *[]SearchForAccountsParamsExclude `form:"exclude,omitempty" json:"exclude,omitempty"` // CurrencyLessThan Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyLessThan *uint64 `form:"currency-less-than,omitempty" json:"currency-less-than,omitempty"` // AuthAddr Include accounts configured to use this spending key. AuthAddr *string `form:"auth-addr,omitempty" json:"auth-addr,omitempty"` // Round Deprecated and disallowed. This parameter used to include results for a specified round. Requests with this parameter set are now rejected. Round *uint64 `form:"round,omitempty" json:"round,omitempty"` // ApplicationId Application ID ApplicationId *uint64 `form:"application-id,omitempty" json:"application-id,omitempty"` }
SearchForAccountsParams defines parameters for SearchForAccounts.
type SearchForAccountsParamsExclude ¶
type SearchForAccountsParamsExclude string
SearchForAccountsParamsExclude defines parameters for SearchForAccounts.
const ( SearchForAccountsParamsExcludeAll SearchForAccountsParamsExclude = "all" SearchForAccountsParamsExcludeAppsLocalState SearchForAccountsParamsExclude = "apps-local-state" SearchForAccountsParamsExcludeAssets SearchForAccountsParamsExclude = "assets" SearchForAccountsParamsExcludeCreatedApps SearchForAccountsParamsExclude = "created-apps" SearchForAccountsParamsExcludeCreatedAssets SearchForAccountsParamsExclude = "created-assets" SearchForAccountsParamsExcludeNone SearchForAccountsParamsExclude = "none" )
Defines values for SearchForAccountsParamsExclude.
type SearchForApplicationBoxesParams ¶
type SearchForApplicationBoxesParams struct { // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` }
SearchForApplicationBoxesParams defines parameters for SearchForApplicationBoxes.
type SearchForApplicationsParams ¶
type SearchForApplicationsParams struct { // ApplicationId Application ID ApplicationId *uint64 `form:"application-id,omitempty" json:"application-id,omitempty"` // Creator Filter just applications with the given creator address. Creator *string `form:"creator,omitempty" json:"creator,omitempty"` // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` }
SearchForApplicationsParams defines parameters for SearchForApplications.
type SearchForAssetsParams ¶
type SearchForAssetsParams struct { // IncludeAll Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates. IncludeAll *bool `form:"include-all,omitempty" json:"include-all,omitempty"` // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` // Creator Filter just assets with the given creator address. Creator *string `form:"creator,omitempty" json:"creator,omitempty"` // Name Filter just assets with the given name. Name *string `form:"name,omitempty" json:"name,omitempty"` // Unit Filter just assets with the given unit. Unit *string `form:"unit,omitempty" json:"unit,omitempty"` // AssetId Asset ID AssetId *uint64 `form:"asset-id,omitempty" json:"asset-id,omitempty"` }
SearchForAssetsParams defines parameters for SearchForAssets.
type SearchForTransactionsParams ¶
type SearchForTransactionsParams struct { // Limit Maximum number of results to return. There could be additional pages even if the limit is not reached. Limit *uint64 `form:"limit,omitempty" json:"limit,omitempty"` // Next The next page of results. Use the next token provided by the previous results. Next *string `form:"next,omitempty" json:"next,omitempty"` // NotePrefix Specifies a prefix which must be contained in the note field. NotePrefix *string `form:"note-prefix,omitempty" json:"note-prefix,omitempty"` TxType *SearchForTransactionsParamsTxType `form:"tx-type,omitempty" json:"tx-type,omitempty"` // SigType SigType filters just results using the specified type of signature: // * sig - Standard // * msig - MultiSig // * lsig - LogicSig SigType *SearchForTransactionsParamsSigType `form:"sig-type,omitempty" json:"sig-type,omitempty"` // Txid Lookup the specific transaction by ID. Txid *string `form:"txid,omitempty" json:"txid,omitempty"` // Round Include results for the specified round. Round *uint64 `form:"round,omitempty" json:"round,omitempty"` // MinRound Include results at or after the specified min-round. MinRound *uint64 `form:"min-round,omitempty" json:"min-round,omitempty"` // MaxRound Include results at or before the specified max-round. MaxRound *uint64 `form:"max-round,omitempty" json:"max-round,omitempty"` // AssetId Asset ID AssetId *uint64 `form:"asset-id,omitempty" json:"asset-id,omitempty"` // BeforeTime Include results before the given time. Must be an RFC 3339 formatted string. BeforeTime *time.Time `form:"before-time,omitempty" json:"before-time,omitempty"` // AfterTime Include results after the given time. Must be an RFC 3339 formatted string. AfterTime *time.Time `form:"after-time,omitempty" json:"after-time,omitempty"` // CurrencyGreaterThan Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyGreaterThan *uint64 `form:"currency-greater-than,omitempty" json:"currency-greater-than,omitempty"` // CurrencyLessThan Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used. CurrencyLessThan *uint64 `form:"currency-less-than,omitempty" json:"currency-less-than,omitempty"` // Address Only include transactions with this address in one of the transaction fields. Address *string `form:"address,omitempty" json:"address,omitempty"` // AddressRole Combine with the address parameter to define what type of address to search for. AddressRole *SearchForTransactionsParamsAddressRole `form:"address-role,omitempty" json:"address-role,omitempty"` // ExcludeCloseTo Combine with address and address-role parameters to define what type of address to search for. The close to fields are normally treated as a receiver, if you would like to exclude them set this parameter to true. ExcludeCloseTo *bool `form:"exclude-close-to,omitempty" json:"exclude-close-to,omitempty"` // RekeyTo Include results which include the rekey-to field. RekeyTo *bool `form:"rekey-to,omitempty" json:"rekey-to,omitempty"` // ApplicationId Application ID ApplicationId *uint64 `form:"application-id,omitempty" json:"application-id,omitempty"` }
SearchForTransactionsParams defines parameters for SearchForTransactions.
type SearchForTransactionsParamsAddressRole ¶
type SearchForTransactionsParamsAddressRole string
SearchForTransactionsParamsAddressRole defines parameters for SearchForTransactions.
const ( FreezeTarget SearchForTransactionsParamsAddressRole = "freeze-target" Receiver SearchForTransactionsParamsAddressRole = "receiver" Sender SearchForTransactionsParamsAddressRole = "sender" )
Defines values for SearchForTransactionsParamsAddressRole.
type SearchForTransactionsParamsSigType ¶
type SearchForTransactionsParamsSigType string
SearchForTransactionsParamsSigType defines parameters for SearchForTransactions.
const ( Lsig SearchForTransactionsParamsSigType = "lsig" Msig SearchForTransactionsParamsSigType = "msig" Sig SearchForTransactionsParamsSigType = "sig" )
Defines values for SearchForTransactionsParamsSigType.
type SearchForTransactionsParamsTxType ¶
type SearchForTransactionsParamsTxType string
SearchForTransactionsParamsTxType defines parameters for SearchForTransactions.
const ( Acfg SearchForTransactionsParamsTxType = "acfg" Afrz SearchForTransactionsParamsTxType = "afrz" Appl SearchForTransactionsParamsTxType = "appl" Axfer SearchForTransactionsParamsTxType = "axfer" Keyreg SearchForTransactionsParamsTxType = "keyreg" Pay SearchForTransactionsParamsTxType = "pay" Stpf SearchForTransactionsParamsTxType = "stpf" )
Defines values for SearchForTransactionsParamsTxType.
type ServerInterface ¶
type ServerInterface interface { // (GET /v2/accounts) SearchForAccounts(ctx echo.Context, params SearchForAccountsParams) error // (GET /v2/accounts/{account-id}) LookupAccountByID(ctx echo.Context, accountId string, params LookupAccountByIDParams) error // (GET /v2/accounts/{account-id}/apps-local-state) LookupAccountAppLocalStates(ctx echo.Context, accountId string, params LookupAccountAppLocalStatesParams) error // (GET /v2/accounts/{account-id}/assets) LookupAccountAssets(ctx echo.Context, accountId string, params LookupAccountAssetsParams) error // (GET /v2/accounts/{account-id}/created-applications) LookupAccountCreatedApplications(ctx echo.Context, accountId string, params LookupAccountCreatedApplicationsParams) error // (GET /v2/accounts/{account-id}/created-assets) LookupAccountCreatedAssets(ctx echo.Context, accountId string, params LookupAccountCreatedAssetsParams) error // (GET /v2/accounts/{account-id}/transactions) LookupAccountTransactions(ctx echo.Context, accountId string, params LookupAccountTransactionsParams) error // (GET /v2/applications) SearchForApplications(ctx echo.Context, params SearchForApplicationsParams) error // (GET /v2/applications/{application-id}) LookupApplicationByID(ctx echo.Context, applicationId uint64, params LookupApplicationByIDParams) error // Get box information for a given application. // (GET /v2/applications/{application-id}/box) LookupApplicationBoxByIDAndName(ctx echo.Context, applicationId uint64, params LookupApplicationBoxByIDAndNameParams) error // Get box names for a given application. // (GET /v2/applications/{application-id}/boxes) SearchForApplicationBoxes(ctx echo.Context, applicationId uint64, params SearchForApplicationBoxesParams) error // (GET /v2/applications/{application-id}/logs) LookupApplicationLogsByID(ctx echo.Context, applicationId uint64, params LookupApplicationLogsByIDParams) error // (GET /v2/assets) SearchForAssets(ctx echo.Context, params SearchForAssetsParams) error // (GET /v2/assets/{asset-id}) LookupAssetByID(ctx echo.Context, assetId uint64, params LookupAssetByIDParams) error // (GET /v2/assets/{asset-id}/balances) LookupAssetBalances(ctx echo.Context, assetId uint64, params LookupAssetBalancesParams) error // (GET /v2/assets/{asset-id}/transactions) LookupAssetTransactions(ctx echo.Context, assetId uint64, params LookupAssetTransactionsParams) error // (GET /v2/blocks/{round-number}) LookupBlock(ctx echo.Context, roundNumber uint64, params LookupBlockParams) error // (GET /v2/transactions) SearchForTransactions(ctx echo.Context, params SearchForTransactionsParams) error // (GET /v2/transactions/{txid}) LookupTransaction(ctx echo.Context, txid string) error }
ServerInterface represents all server handlers.
type ServerInterfaceWrapper ¶
type ServerInterfaceWrapper struct {
Handler ServerInterface
}
ServerInterfaceWrapper converts echo contexts to parameters.
func (*ServerInterfaceWrapper) LookupAccountAppLocalStates ¶
func (w *ServerInterfaceWrapper) LookupAccountAppLocalStates(ctx echo.Context) error
LookupAccountAppLocalStates converts echo context to params.
func (*ServerInterfaceWrapper) LookupAccountAssets ¶
func (w *ServerInterfaceWrapper) LookupAccountAssets(ctx echo.Context) error
LookupAccountAssets converts echo context to params.
func (*ServerInterfaceWrapper) LookupAccountByID ¶
func (w *ServerInterfaceWrapper) LookupAccountByID(ctx echo.Context) error
LookupAccountByID converts echo context to params.
func (*ServerInterfaceWrapper) LookupAccountCreatedApplications ¶
func (w *ServerInterfaceWrapper) LookupAccountCreatedApplications(ctx echo.Context) error
LookupAccountCreatedApplications converts echo context to params.
func (*ServerInterfaceWrapper) LookupAccountCreatedAssets ¶
func (w *ServerInterfaceWrapper) LookupAccountCreatedAssets(ctx echo.Context) error
LookupAccountCreatedAssets converts echo context to params.
func (*ServerInterfaceWrapper) LookupAccountTransactions ¶
func (w *ServerInterfaceWrapper) LookupAccountTransactions(ctx echo.Context) error
LookupAccountTransactions converts echo context to params.
func (*ServerInterfaceWrapper) LookupApplicationBoxByIDAndName ¶
func (w *ServerInterfaceWrapper) LookupApplicationBoxByIDAndName(ctx echo.Context) error
LookupApplicationBoxByIDAndName converts echo context to params.
func (*ServerInterfaceWrapper) LookupApplicationByID ¶
func (w *ServerInterfaceWrapper) LookupApplicationByID(ctx echo.Context) error
LookupApplicationByID converts echo context to params.
func (*ServerInterfaceWrapper) LookupApplicationLogsByID ¶
func (w *ServerInterfaceWrapper) LookupApplicationLogsByID(ctx echo.Context) error
LookupApplicationLogsByID converts echo context to params.
func (*ServerInterfaceWrapper) LookupAssetBalances ¶
func (w *ServerInterfaceWrapper) LookupAssetBalances(ctx echo.Context) error
LookupAssetBalances converts echo context to params.
func (*ServerInterfaceWrapper) LookupAssetByID ¶
func (w *ServerInterfaceWrapper) LookupAssetByID(ctx echo.Context) error
LookupAssetByID converts echo context to params.
func (*ServerInterfaceWrapper) LookupAssetTransactions ¶
func (w *ServerInterfaceWrapper) LookupAssetTransactions(ctx echo.Context) error
LookupAssetTransactions converts echo context to params.
func (*ServerInterfaceWrapper) LookupBlock ¶
func (w *ServerInterfaceWrapper) LookupBlock(ctx echo.Context) error
LookupBlock converts echo context to params.
func (*ServerInterfaceWrapper) LookupTransaction ¶
func (w *ServerInterfaceWrapper) LookupTransaction(ctx echo.Context) error
LookupTransaction converts echo context to params.
func (*ServerInterfaceWrapper) SearchForAccounts ¶
func (w *ServerInterfaceWrapper) SearchForAccounts(ctx echo.Context) error
SearchForAccounts converts echo context to params.
func (*ServerInterfaceWrapper) SearchForApplicationBoxes ¶
func (w *ServerInterfaceWrapper) SearchForApplicationBoxes(ctx echo.Context) error
SearchForApplicationBoxes converts echo context to params.
func (*ServerInterfaceWrapper) SearchForApplications ¶
func (w *ServerInterfaceWrapper) SearchForApplications(ctx echo.Context) error
SearchForApplications converts echo context to params.
func (*ServerInterfaceWrapper) SearchForAssets ¶
func (w *ServerInterfaceWrapper) SearchForAssets(ctx echo.Context) error
SearchForAssets converts echo context to params.
func (*ServerInterfaceWrapper) SearchForTransactions ¶
func (w *ServerInterfaceWrapper) SearchForTransactions(ctx echo.Context) error
SearchForTransactions converts echo context to params.
type StateProofFields ¶
type StateProofFields struct { PartProofs *MerkleArrayProof `json:"part-proofs,omitempty"` // PositionsToReveal \[pr\] Sequence of reveal positions. PositionsToReveal *[]uint64 `json:"positions-to-reveal,omitempty"` // Reveals \[r\] Note that this is actually stored as a map[uint64] - Reveal in the actual msgp Reveals *[]StateProofReveal `json:"reveals,omitempty"` // SaltVersion \[v\] Salt version of the merkle signature. SaltVersion *uint64 `json:"salt-version,omitempty"` // SigCommit \[c\] SigCommit *[]byte `json:"sig-commit,omitempty"` SigProofs *MerkleArrayProof `json:"sig-proofs,omitempty"` // SignedWeight \[w\] SignedWeight *uint64 `json:"signed-weight,omitempty"` }
StateProofFields \[sp\] represents a state proof.
Definition: crypto/stateproof/structs.go : StateProof
type StateProofParticipant ¶
type StateProofParticipant struct { Verifier *StateProofVerifier `json:"verifier,omitempty"` // Weight \[w\] Weight *uint64 `json:"weight,omitempty"` }
StateProofParticipant defines model for StateProofParticipant.
type StateProofReveal ¶
type StateProofReveal struct { Participant *StateProofParticipant `json:"participant,omitempty"` // Position The position in the signature and participants arrays corresponding to this entry. Position *uint64 `json:"position,omitempty"` SigSlot *StateProofSigSlot `json:"sig-slot,omitempty"` }
StateProofReveal defines model for StateProofReveal.
type StateProofSigSlot ¶
type StateProofSigSlot struct { // LowerSigWeight \[l\] The total weight of signatures in the lower-numbered slots. LowerSigWeight *uint64 `json:"lower-sig-weight,omitempty"` Signature *StateProofSignature `json:"signature,omitempty"` }
StateProofSigSlot defines model for StateProofSigSlot.
type StateProofSignature ¶
type StateProofSignature struct { FalconSignature *[]byte `json:"falcon-signature,omitempty"` MerkleArrayIndex *uint64 `json:"merkle-array-index,omitempty"` Proof *MerkleArrayProof `json:"proof,omitempty"` // VerifyingKey \[vkey\] VerifyingKey *[]byte `json:"verifying-key,omitempty"` }
StateProofSignature defines model for StateProofSignature.
type StateProofTracking ¶
type StateProofTracking struct { // NextRound \[n\] Next round for which we will accept a state proof transaction. NextRound *uint64 `json:"next-round,omitempty"` // OnlineTotalWeight \[t\] The total number of microalgos held by the online accounts during the StateProof round. OnlineTotalWeight *uint64 `json:"online-total-weight,omitempty"` // Type State Proof Type. Note the raw object uses map with this as key. Type *uint64 `json:"type,omitempty"` // VotersCommitment \[v\] Root of a vector commitment containing online accounts that will help sign the proof. VotersCommitment *[]byte `json:"voters-commitment,omitempty"` }
StateProofTracking defines model for StateProofTracking.
type StateProofVerifier ¶
type StateProofVerifier struct { // Commitment \[cmt\] Represents the root of the vector commitment tree. Commitment *[]byte `json:"commitment,omitempty"` // KeyLifetime \[lf\] Key lifetime. KeyLifetime *uint64 `json:"key-lifetime,omitempty"` }
StateProofVerifier defines model for StateProofVerifier.
type StateSchema ¶
type StateSchema struct { // NumByteSlice Maximum number of TEAL byte slices that may be stored in the key/value store. NumByteSlice uint64 `json:"num-byte-slice"` // NumUint Maximum number of TEAL uints that may be stored in the key/value store. NumUint uint64 `json:"num-uint"` }
StateSchema Represents a \[apls\] local-state or \[apgs\] global-state schema. These schemas determine how much storage may be used in a local-state or global-state for an application. The more space used, the larger minimum balance must be maintained in the account holding the data.
type TealKeyValue ¶
type TealKeyValue struct { Key string `json:"key"` // Value Represents a TEAL value. Value TealValue `json:"value"` }
TealKeyValue Represents a key-value pair in an application store.
type TealKeyValueStore ¶
type TealKeyValueStore = []TealKeyValue
TealKeyValueStore Represents a key-value store for use in an application.
type TealValue ¶
type TealValue struct { // Bytes bytes value. Bytes string `json:"bytes"` // Type type of the value. Value `1` refers to **bytes**, value `2` refers to **uint** Type uint64 `json:"type"` // Uint uint value. Uint uint64 `json:"uint"` }
TealValue Represents a TEAL value.
type Transaction ¶
type Transaction struct { // ApplicationTransaction Fields for application transactions. // // Definition: // data/transactions/application.go : ApplicationCallTxnFields ApplicationTransaction *TransactionApplication `json:"application-transaction,omitempty"` // AssetConfigTransaction Fields for asset allocation, re-configuration, and destruction. // // // A zero value for asset-id indicates asset creation. // A zero value for the params indicates asset destruction. // // Definition: // data/transactions/asset.go : AssetConfigTxnFields AssetConfigTransaction *TransactionAssetConfig `json:"asset-config-transaction,omitempty"` // AssetFreezeTransaction Fields for an asset freeze transaction. // // Definition: // data/transactions/asset.go : AssetFreezeTxnFields AssetFreezeTransaction *TransactionAssetFreeze `json:"asset-freeze-transaction,omitempty"` // AssetTransferTransaction Fields for an asset transfer transaction. // // Definition: // data/transactions/asset.go : AssetTransferTxnFields AssetTransferTransaction *TransactionAssetTransfer `json:"asset-transfer-transaction,omitempty"` // AuthAddr \[sgnr\] this is included with signed transactions when the signing address does not equal the sender. The backend can use this to ensure that auth addr is equal to the accounts auth addr. AuthAddr *string `json:"auth-addr,omitempty"` // CloseRewards \[rc\] rewards applied to close-remainder-to account. CloseRewards *uint64 `json:"close-rewards,omitempty"` // ClosingAmount \[ca\] closing amount for transaction. ClosingAmount *uint64 `json:"closing-amount,omitempty"` // ConfirmedRound Round when the transaction was confirmed. ConfirmedRound *uint64 `json:"confirmed-round,omitempty"` // CreatedApplicationIndex Specifies an application index (ID) if an application was created with this transaction. CreatedApplicationIndex *uint64 `json:"created-application-index,omitempty"` // CreatedAssetIndex Specifies an asset index (ID) if an asset was created with this transaction. CreatedAssetIndex *uint64 `json:"created-asset-index,omitempty"` // Fee \[fee\] Transaction fee. Fee uint64 `json:"fee"` // FirstValid \[fv\] First valid round for this transaction. FirstValid uint64 `json:"first-valid"` // GenesisHash \[gh\] Hash of genesis block. GenesisHash *[]byte `json:"genesis-hash,omitempty"` // GenesisId \[gen\] genesis block ID. GenesisId *string `json:"genesis-id,omitempty"` // GlobalStateDelta Application state delta. GlobalStateDelta *StateDelta `json:"global-state-delta,omitempty"` // Group \[grp\] Base64 encoded byte array of a sha512/256 digest. When present indicates that this transaction is part of a transaction group and the value is the sha512/256 hash of the transactions in that group. Group *[]byte `json:"group,omitempty"` // Id Transaction ID Id *string `json:"id,omitempty"` // InnerTxns Inner transactions produced by application execution. InnerTxns *[]Transaction `json:"inner-txns,omitempty"` // IntraRoundOffset Offset into the round where this transaction was confirmed. IntraRoundOffset *uint64 `json:"intra-round-offset,omitempty"` // KeyregTransaction Fields for a keyreg transaction. // // Definition: // data/transactions/keyreg.go : KeyregTxnFields KeyregTransaction *TransactionKeyreg `json:"keyreg-transaction,omitempty"` // LastValid \[lv\] Last valid round for this transaction. LastValid uint64 `json:"last-valid"` // Lease \[lx\] Base64 encoded 32-byte array. Lease enforces mutual exclusion of transactions. If this field is nonzero, then once the transaction is confirmed, it acquires the lease identified by the (Sender, Lease) pair of the transaction until the LastValid round passes. While this transaction possesses the lease, no other transaction specifying this lease can be confirmed. Lease *[]byte `json:"lease,omitempty"` // LocalStateDelta \[ld\] Local state key/value changes for the application being executed by this transaction. LocalStateDelta *[]AccountStateDelta `json:"local-state-delta,omitempty"` // Logs \[lg\] Logs for the application being executed by this transaction. Logs *[][]byte `json:"logs,omitempty"` // Note \[note\] Free form data. Note *[]byte `json:"note,omitempty"` // PaymentTransaction Fields for a payment transaction. // // Definition: // data/transactions/payment.go : PaymentTxnFields PaymentTransaction *TransactionPayment `json:"payment-transaction,omitempty"` // ReceiverRewards \[rr\] rewards applied to receiver account. ReceiverRewards *uint64 `json:"receiver-rewards,omitempty"` // RekeyTo \[rekey\] when included in a valid transaction, the accounts auth addr will be updated with this value and future signatures must be signed with the key represented by this address. RekeyTo *string `json:"rekey-to,omitempty"` // RoundTime Time when the block this transaction is in was confirmed. RoundTime *uint64 `json:"round-time,omitempty"` // Sender \[snd\] Sender's address. Sender string `json:"sender"` // SenderRewards \[rs\] rewards applied to sender account. SenderRewards *uint64 `json:"sender-rewards,omitempty"` // Signature Validation signature associated with some data. Only one of the signatures should be provided. Signature *TransactionSignature `json:"signature,omitempty"` // StateProofTransaction Fields for a state proof transaction. // // Definition: // data/transactions/stateproof.go : StateProofTxnFields StateProofTransaction *TransactionStateProof `json:"state-proof-transaction,omitempty"` // TxType \[type\] Indicates what type of transaction this is. Different types have different fields. // // Valid types, and where their fields are stored: // * \[pay\] payment-transaction // * \[keyreg\] keyreg-transaction // * \[acfg\] asset-config-transaction // * \[axfer\] asset-transfer-transaction // * \[afrz\] asset-freeze-transaction // * \[appl\] application-transaction // * \[stpf\] state-proof-transaction TxType TransactionTxType `json:"tx-type"` }
Transaction Contains all fields common to all transactions and serves as an envelope to all transactions type. Represents both regular and inner transactions.
Definition: data/transactions/signedtxn.go : SignedTxn data/transactions/transaction.go : Transaction
type TransactionApplication ¶
type TransactionApplication struct { // Accounts \[apat\] List of accounts in addition to the sender that may be accessed from the application's approval-program and clear-state-program. Accounts *[]string `json:"accounts,omitempty"` // ApplicationArgs \[apaa\] transaction specific arguments accessed from the application's approval-program and clear-state-program. ApplicationArgs *[]string `json:"application-args,omitempty"` // ApplicationId \[apid\] ID of the application being configured or empty if creating. ApplicationId uint64 `json:"application-id"` // ApprovalProgram \[apap\] Logic executed for every application transaction, except when on-completion is set to "clear". It can read and write global state for the application, as well as account-specific local state. Approval programs may reject the transaction. ApprovalProgram *[]byte `json:"approval-program,omitempty"` // ClearStateProgram \[apsu\] Logic executed for application transactions with on-completion set to "clear". It can read and write global state for the application, as well as account-specific local state. Clear state programs cannot reject the transaction. ClearStateProgram *[]byte `json:"clear-state-program,omitempty"` // ExtraProgramPages \[epp\] specifies the additional app program len requested in pages. ExtraProgramPages *uint64 `json:"extra-program-pages,omitempty"` // ForeignApps \[apfa\] Lists the applications in addition to the application-id whose global states may be accessed by this application's approval-program and clear-state-program. The access is read-only. ForeignApps *[]uint64 `json:"foreign-apps,omitempty"` // ForeignAssets \[apas\] lists the assets whose parameters may be accessed by this application's ApprovalProgram and ClearStateProgram. The access is read-only. ForeignAssets *[]uint64 `json:"foreign-assets,omitempty"` // GlobalStateSchema Represents a \[apls\] local-state or \[apgs\] global-state schema. These schemas determine how much storage may be used in a local-state or global-state for an application. The more space used, the larger minimum balance must be maintained in the account holding the data. GlobalStateSchema *StateSchema `json:"global-state-schema,omitempty"` // LocalStateSchema Represents a \[apls\] local-state or \[apgs\] global-state schema. These schemas determine how much storage may be used in a local-state or global-state for an application. The more space used, the larger minimum balance must be maintained in the account holding the data. LocalStateSchema *StateSchema `json:"local-state-schema,omitempty"` // OnCompletion \[apan\] defines the what additional actions occur with the transaction. // // Valid types: // * noop // * optin // * closeout // * clear // * update // * update // * delete OnCompletion OnCompletion `json:"on-completion"` }
TransactionApplication Fields for application transactions.
Definition: data/transactions/application.go : ApplicationCallTxnFields
type TransactionAssetConfig ¶
type TransactionAssetConfig struct { // AssetId \[xaid\] ID of the asset being configured or empty if creating. AssetId *uint64 `json:"asset-id,omitempty"` // Params AssetParams specifies the parameters for an asset. // // \[apar\] when part of an AssetConfig transaction. // // Definition: // data/transactions/asset.go : AssetParams Params *AssetParams `json:"params,omitempty"` }
TransactionAssetConfig Fields for asset allocation, re-configuration, and destruction.
A zero value for asset-id indicates asset creation. A zero value for the params indicates asset destruction.
Definition: data/transactions/asset.go : AssetConfigTxnFields
type TransactionAssetFreeze ¶
type TransactionAssetFreeze struct { // Address \[fadd\] Address of the account whose asset is being frozen or thawed. Address string `json:"address"` // AssetId \[faid\] ID of the asset being frozen or thawed. AssetId uint64 `json:"asset-id"` // NewFreezeStatus \[afrz\] The new freeze status. NewFreezeStatus bool `json:"new-freeze-status"` }
TransactionAssetFreeze Fields for an asset freeze transaction.
Definition: data/transactions/asset.go : AssetFreezeTxnFields
type TransactionAssetTransfer ¶
type TransactionAssetTransfer struct { // Amount \[aamt\] Amount of asset to transfer. A zero amount transferred to self allocates that asset in the account's Assets map. Amount uint64 `json:"amount"` // AssetId \[xaid\] ID of the asset being transferred. AssetId uint64 `json:"asset-id"` // CloseAmount Number of assets transferred to the close-to account as part of the transaction. CloseAmount *uint64 `json:"close-amount,omitempty"` // CloseTo \[aclose\] Indicates that the asset should be removed from the account's Assets map, and specifies where the remaining asset holdings should be transferred. It's always valid to transfer remaining asset holdings to the creator account. CloseTo *string `json:"close-to,omitempty"` // Receiver \[arcv\] Recipient address of the transfer. Receiver string `json:"receiver"` // Sender \[asnd\] The effective sender during a clawback transactions. If this is not a zero value, the real transaction sender must be the Clawback address from the AssetParams. Sender *string `json:"sender,omitempty"` }
TransactionAssetTransfer Fields for an asset transfer transaction.
Definition: data/transactions/asset.go : AssetTransferTxnFields
type TransactionKeyreg ¶
type TransactionKeyreg struct { // NonParticipation \[nonpart\] Mark the account as participating or non-participating. NonParticipation *bool `json:"non-participation,omitempty"` // SelectionParticipationKey \[selkey\] Public key used with the Verified Random Function (VRF) result during committee selection. SelectionParticipationKey *[]byte `json:"selection-participation-key,omitempty"` // StateProofKey \[sprfkey\] State proof key used in key registration transactions. StateProofKey *[]byte `json:"state-proof-key,omitempty"` // VoteFirstValid \[votefst\] First round this participation key is valid. VoteFirstValid *uint64 `json:"vote-first-valid,omitempty"` // VoteKeyDilution \[votekd\] Number of subkeys in each batch of participation keys. VoteKeyDilution *uint64 `json:"vote-key-dilution,omitempty"` // VoteLastValid \[votelst\] Last round this participation key is valid. VoteLastValid *uint64 `json:"vote-last-valid,omitempty"` // VoteParticipationKey \[votekey\] Participation public key used in key registration transactions. VoteParticipationKey *[]byte `json:"vote-participation-key,omitempty"` }
TransactionKeyreg Fields for a keyreg transaction.
Definition: data/transactions/keyreg.go : KeyregTxnFields
type TransactionPayment ¶
type TransactionPayment struct { // Amount \[amt\] number of MicroAlgos intended to be transferred. Amount uint64 `json:"amount"` // CloseAmount Number of MicroAlgos that were sent to the close-remainder-to address when closing the sender account. CloseAmount *uint64 `json:"close-amount,omitempty"` // CloseRemainderTo \[close\] when set, indicates that the sending account should be closed and all remaining funds be transferred to this address. CloseRemainderTo *string `json:"close-remainder-to,omitempty"` // Receiver \[rcv\] receiver's address. Receiver string `json:"receiver"` }
TransactionPayment Fields for a payment transaction.
Definition: data/transactions/payment.go : PaymentTxnFields
type TransactionResponse ¶
type TransactionResponse struct { // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // Transaction Contains all fields common to all transactions and serves as an envelope to all transactions type. Represents both regular and inner transactions. // // Definition: // data/transactions/signedtxn.go : SignedTxn // data/transactions/transaction.go : Transaction Transaction Transaction `json:"transaction"` }
TransactionResponse defines model for TransactionResponse.
type TransactionSignature ¶
type TransactionSignature struct { // Logicsig \[lsig\] Programatic transaction signature. // // Definition: // data/transactions/logicsig.go Logicsig *TransactionSignatureLogicsig `json:"logicsig,omitempty"` // Multisig \[msig\] structure holding multiple subsignatures. // // Definition: // crypto/multisig.go : MultisigSig Multisig *TransactionSignatureMultisig `json:"multisig,omitempty"` // Sig \[sig\] Standard ed25519 signature. Sig *[]byte `json:"sig,omitempty"` }
TransactionSignature Validation signature associated with some data. Only one of the signatures should be provided.
type TransactionSignatureLogicsig ¶
type TransactionSignatureLogicsig struct { // Args \[arg\] Logic arguments, base64 encoded. Args *[]string `json:"args,omitempty"` // Logic \[l\] Program signed by a signature or multi signature, or hashed to be the address of ana ccount. Base64 encoded TEAL program. Logic []byte `json:"logic"` // MultisigSignature \[msig\] structure holding multiple subsignatures. // // Definition: // crypto/multisig.go : MultisigSig MultisigSignature *TransactionSignatureMultisig `json:"multisig-signature,omitempty"` // Signature \[sig\] ed25519 signature. Signature *[]byte `json:"signature,omitempty"` }
TransactionSignatureLogicsig \[lsig\] Programatic transaction signature.
Definition: data/transactions/logicsig.go
type TransactionSignatureMultisig ¶
type TransactionSignatureMultisig struct { // Subsignature \[subsig\] holds pairs of public key and signatures. Subsignature *[]TransactionSignatureMultisigSubsignature `json:"subsignature,omitempty"` // Threshold \[thr\] Threshold *uint64 `json:"threshold,omitempty"` // Version \[v\] Version *uint64 `json:"version,omitempty"` }
TransactionSignatureMultisig \[msig\] structure holding multiple subsignatures.
Definition: crypto/multisig.go : MultisigSig
type TransactionSignatureMultisigSubsignature ¶
type TransactionSignatureMultisigSubsignature struct { // PublicKey \[pk\] PublicKey *[]byte `json:"public-key,omitempty"` // Signature \[s\] Signature *[]byte `json:"signature,omitempty"` }
TransactionSignatureMultisigSubsignature defines model for TransactionSignatureMultisigSubsignature.
type TransactionStateProof ¶
type TransactionStateProof struct { Message *IndexerStateProofMessage `json:"message,omitempty"` // StateProof \[sp\] represents a state proof. // // Definition: // crypto/stateproof/structs.go : StateProof StateProof *StateProofFields `json:"state-proof,omitempty"` // StateProofType \[sptype\] Type of the state proof. Integer representing an entry defined in protocol/stateproof.go StateProofType *uint64 `json:"state-proof-type,omitempty"` }
TransactionStateProof Fields for a state proof transaction.
Definition: data/transactions/stateproof.go : StateProofTxnFields
type TransactionTxType ¶
type TransactionTxType string
TransactionTxType \[type\] Indicates what type of transaction this is. Different types have different fields.
Valid types, and where their fields are stored: * \[pay\] payment-transaction * \[keyreg\] keyreg-transaction * \[acfg\] asset-config-transaction * \[axfer\] asset-transfer-transaction * \[afrz\] asset-freeze-transaction * \[appl\] application-transaction * \[stpf\] state-proof-transaction
const ( TransactionTxTypeAcfg TransactionTxType = "acfg" TransactionTxTypeAfrz TransactionTxType = "afrz" TransactionTxTypeAppl TransactionTxType = "appl" TransactionTxTypeAxfer TransactionTxType = "axfer" TransactionTxTypeKeyreg TransactionTxType = "keyreg" TransactionTxTypePay TransactionTxType = "pay" TransactionTxTypeStpf TransactionTxType = "stpf" )
Defines values for TransactionTxType.
type TransactionsResponse ¶
type TransactionsResponse struct { // CurrentRound Round at which the results were computed. CurrentRound uint64 `json:"current-round"` // NextToken Used for pagination, when making another request provide this token with the next parameter. NextToken *string `json:"next-token,omitempty"` Transactions []Transaction `json:"transactions"` }
TransactionsResponse defines model for TransactionsResponse.