Documentation ¶
Index ¶
- Constants
- type Block
- type Client
- func (c *Client) GetBlockList(request *GetBlockListRequest) (response *GetBlockListResponse, err error)
- func (c *Client) GetClusterSummary(request *GetClusterSummaryRequest) (response *GetClusterSummaryResponse, err error)
- func (c *Client) GetInvokeTx(request *GetInvokeTxRequest) (response *GetInvokeTxResponse, err error)
- func (c *Client) GetLatesdTransactionList(request *GetLatesdTransactionListRequest) (response *GetLatesdTransactionListResponse, err error)
- func (c *Client) Invoke(request *InvokeRequest) (response *InvokeResponse, err error)
- func (c *Client) Query(request *QueryRequest) (response *QueryResponse, err error)
- type GetBlockListRequest
- type GetBlockListResponse
- type GetClusterSummaryRequest
- type GetClusterSummaryResponse
- type GetInvokeTxRequest
- type GetInvokeTxResponse
- type GetLatesdTransactionListRequest
- type GetLatesdTransactionListResponse
- type InvokeRequest
- type InvokeResponse
- type PeerSet
- type QueryRequest
- type QueryResponse
- type TransactionItem
Constants ¶
View Source
const APIVersion = "2018-04-16"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Block ¶
type Block struct { // 区块编号 BlockNum *uint64 `json:"BlockNum,omitempty" name:"BlockNum"` // 区块Hash数值 DataHash *string `json:"DataHash,omitempty" name:"DataHash"` // 区块ID,与区块编号一致 BlockId *uint64 `json:"BlockId,omitempty" name:"BlockId"` // 前一个区块Hash(未使用),与区块Hash数值一致 PreHash *string `json:"PreHash,omitempty" name:"PreHash"` // 区块内的交易数量 TxCount *uint64 `json:"TxCount,omitempty" name:"TxCount"` }
type Client ¶
func NewClient ¶
func NewClient(credential *common.Credential, region string, clientProfile *profile.ClientProfile) (client *Client, err error)
func NewClientWithSecretId ¶
Deprecated
func (*Client) GetBlockList ¶
func (c *Client) GetBlockList(request *GetBlockListRequest) (response *GetBlockListResponse, err error)
查看当前网络下的所有区块列表,分页展示
func (*Client) GetClusterSummary ¶
func (c *Client) GetClusterSummary(request *GetClusterSummaryRequest) (response *GetClusterSummaryResponse, err error)
获取区块链网络概要
func (*Client) GetInvokeTx ¶
func (c *Client) GetInvokeTx(request *GetInvokeTxRequest) (response *GetInvokeTxResponse, err error)
Invoke异步调用结果查询
func (*Client) GetLatesdTransactionList ¶
func (c *Client) GetLatesdTransactionList(request *GetLatesdTransactionListRequest) (response *GetLatesdTransactionListResponse, err error)
获取最新交易列表
func (*Client) Invoke ¶
func (c *Client) Invoke(request *InvokeRequest) (response *InvokeResponse, err error)
新增交易
func (*Client) Query ¶
func (c *Client) Query(request *QueryRequest) (response *QueryResponse, err error)
查询交易
type GetBlockListRequest ¶
type GetBlockListRequest struct { *tchttp.BaseRequest // 模块名称,固定字段:block Module *string `json:"Module,omitempty" name:"Module"` // 操作名称,固定字段:block_list Operation *string `json:"Operation,omitempty" name:"Operation"` // 通道ID,固定字段:0 ChannelId *uint64 `json:"ChannelId,omitempty" name:"ChannelId"` // 组织ID,固定字段:0 GroupId *uint64 `json:"GroupId,omitempty" name:"GroupId"` // 需要查询的通道名称,可在通道详情或列表中获取 ChannelName *string `json:"ChannelName,omitempty" name:"ChannelName"` // 调用接口的组织名称,可以在组织管理列表中获取当前组织的名称 GroupName *string `json:"GroupName,omitempty" name:"GroupName"` // 区块链网络ID,可在区块链网络详情或列表中获取 ClusterId *string `json:"ClusterId,omitempty" name:"ClusterId"` // 需要获取的起始交易偏移 Offset *uint64 `json:"Offset,omitempty" name:"Offset"` // 需要获取的交易数量 Limit *uint64 `json:"Limit,omitempty" name:"Limit"` }
func NewGetBlockListRequest ¶
func NewGetBlockListRequest() (request *GetBlockListRequest)
func (*GetBlockListRequest) FromJsonString ¶
func (r *GetBlockListRequest) FromJsonString(s string) error
func (*GetBlockListRequest) ToJsonString ¶
func (r *GetBlockListRequest) ToJsonString() string
type GetBlockListResponse ¶
type GetBlockListResponse struct { *tchttp.BaseResponse Response *struct { // 区块数量 TotalCount *uint64 `json:"TotalCount,omitempty" name:"TotalCount"` // 区块列表 BlockList []*Block `json:"BlockList,omitempty" name:"BlockList" list` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewGetBlockListResponse ¶
func NewGetBlockListResponse() (response *GetBlockListResponse)
func (*GetBlockListResponse) FromJsonString ¶
func (r *GetBlockListResponse) FromJsonString(s string) error
func (*GetBlockListResponse) ToJsonString ¶
func (r *GetBlockListResponse) ToJsonString() string
type GetClusterSummaryRequest ¶
type GetClusterSummaryRequest struct { *tchttp.BaseRequest // 模块名称,固定字段:cluster_mng Module *string `json:"Module,omitempty" name:"Module"` // 操作名称,固定字段:cluster_summary Operation *string `json:"Operation,omitempty" name:"Operation"` // 区块链网络ID,可在区块链网络详情或列表中获取 ClusterId *string `json:"ClusterId,omitempty" name:"ClusterId"` // 组织ID,固定字段:0 GroupId *uint64 `json:"GroupId,omitempty" name:"GroupId"` // 调用接口的组织名称,可以在组织管理列表中获取当前组织的名称 GroupName *string `json:"GroupName,omitempty" name:"GroupName"` }
func NewGetClusterSummaryRequest ¶
func NewGetClusterSummaryRequest() (request *GetClusterSummaryRequest)
func (*GetClusterSummaryRequest) FromJsonString ¶
func (r *GetClusterSummaryRequest) FromJsonString(s string) error
func (*GetClusterSummaryRequest) ToJsonString ¶
func (r *GetClusterSummaryRequest) ToJsonString() string
type GetClusterSummaryResponse ¶
type GetClusterSummaryResponse struct { *tchttp.BaseResponse Response *struct { // 网络通道总数量 TotalChannelCount *uint64 `json:"TotalChannelCount,omitempty" name:"TotalChannelCount"` // 当前组织创建的通道数量 MyChannelCount *uint64 `json:"MyChannelCount,omitempty" name:"MyChannelCount"` // 其组织创建的通道数量 OtherChannelCount *uint64 `json:"OtherChannelCount,omitempty" name:"OtherChannelCount"` // 当前组织加入的通道数量 JoinChannelCount *uint64 `json:"JoinChannelCount,omitempty" name:"JoinChannelCount"` // 与当前组织无关的通道数量 NoneChannelCount *uint64 `json:"NoneChannelCount,omitempty" name:"NoneChannelCount"` // 网络节点总数量 TotalPeerCount *uint64 `json:"TotalPeerCount,omitempty" name:"TotalPeerCount"` // 当前组织创建的节点数量 MyPeerCount *uint64 `json:"MyPeerCount,omitempty" name:"MyPeerCount"` // 其他组织创建的节点数量 OtherPeerCount *uint64 `json:"OtherPeerCount,omitempty" name:"OtherPeerCount"` // 网络组织总数量 TotalGroupCount *uint64 `json:"TotalGroupCount,omitempty" name:"TotalGroupCount"` // 当前组织创建的组织数量 MyGroupCount *uint64 `json:"MyGroupCount,omitempty" name:"MyGroupCount"` // 其他组织创建的组织数量 OtherGroupCount *uint64 `json:"OtherGroupCount,omitempty" name:"OtherGroupCount"` // 网络智能合约总数量 TotalChaincodeCount *uint64 `json:"TotalChaincodeCount,omitempty" name:"TotalChaincodeCount"` // 最近7天发起的智能合约数量 RecentChaincodeCount *uint64 `json:"RecentChaincodeCount,omitempty" name:"RecentChaincodeCount"` // 当前组织发起的智能合约数量 MyChaincodeCount *uint64 `json:"MyChaincodeCount,omitempty" name:"MyChaincodeCount"` // 其组织发起的智能合约数量 OtherChaincodeCount *uint64 `json:"OtherChaincodeCount,omitempty" name:"OtherChaincodeCount"` // 当前组织的证书总数量 TotalCertCount *uint64 `json:"TotalCertCount,omitempty" name:"TotalCertCount"` // 颁发给当前组织的证书数量 TlsCertCount *uint64 `json:"TlsCertCount,omitempty" name:"TlsCertCount"` // 网络背书节点证书数量 PeerCertCount *uint64 `json:"PeerCertCount,omitempty" name:"PeerCertCount"` // 网络排序节点证书数量 OrderCertCount *uint64 `json:"OrderCertCount,omitempty" name:"OrderCertCount"` // 当前组织业务证书数量 ClientCertCount *uint64 `json:"ClientCertCount,omitempty" name:"ClientCertCount"` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewGetClusterSummaryResponse ¶
func NewGetClusterSummaryResponse() (response *GetClusterSummaryResponse)
func (*GetClusterSummaryResponse) FromJsonString ¶
func (r *GetClusterSummaryResponse) FromJsonString(s string) error
func (*GetClusterSummaryResponse) ToJsonString ¶
func (r *GetClusterSummaryResponse) ToJsonString() string
type GetInvokeTxRequest ¶
type GetInvokeTxRequest struct { *tchttp.BaseRequest // 模块名,固定字段:transaction Module *string `json:"Module,omitempty" name:"Module"` // 操作名,固定字段:query_txid Operation *string `json:"Operation,omitempty" name:"Operation"` // 区块链网络ID,可在区块链网络详情或列表中获取 ClusterId *string `json:"ClusterId,omitempty" name:"ClusterId"` // 业务所属通道名称,可在通道详情或列表中获取 ChannelName *string `json:"ChannelName,omitempty" name:"ChannelName"` // 执行该查询交易的节点名称,可以在通道详情中获取该通道上的节点名称极其所属组织名称 PeerName *string `json:"PeerName,omitempty" name:"PeerName"` // 执行该查询交易的节点所属组织名称,可以在通道详情中获取该通道上的节点名称极其所属组织名称 PeerGroup *string `json:"PeerGroup,omitempty" name:"PeerGroup"` // 交易ID TxId *string `json:"TxId,omitempty" name:"TxId"` // 调用合约的组织名称,可以在组织管理列表中获取当前组织的名称 GroupName *string `json:"GroupName,omitempty" name:"GroupName"` }
func NewGetInvokeTxRequest ¶
func NewGetInvokeTxRequest() (request *GetInvokeTxRequest)
func (*GetInvokeTxRequest) FromJsonString ¶
func (r *GetInvokeTxRequest) FromJsonString(s string) error
func (*GetInvokeTxRequest) ToJsonString ¶
func (r *GetInvokeTxRequest) ToJsonString() string
type GetInvokeTxResponse ¶
type GetInvokeTxResponse struct { *tchttp.BaseResponse Response *struct { // 交易执行状态码 TxValidationCode *int64 `json:"TxValidationCode,omitempty" name:"TxValidationCode"` // 交易执行消息 TxValidationMsg *string `json:"TxValidationMsg,omitempty" name:"TxValidationMsg"` // 交易所在区块ID BlockId *int64 `json:"BlockId,omitempty" name:"BlockId"` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewGetInvokeTxResponse ¶
func NewGetInvokeTxResponse() (response *GetInvokeTxResponse)
func (*GetInvokeTxResponse) FromJsonString ¶
func (r *GetInvokeTxResponse) FromJsonString(s string) error
func (*GetInvokeTxResponse) ToJsonString ¶
func (r *GetInvokeTxResponse) ToJsonString() string
type GetLatesdTransactionListRequest ¶
type GetLatesdTransactionListRequest struct { *tchttp.BaseRequest // 模块名称,固定字段:transaction Module *string `json:"Module,omitempty" name:"Module"` // 操作名称,固定字段:latest_transaction_list Operation *string `json:"Operation,omitempty" name:"Operation"` // 组织ID,固定字段:0 GroupId *uint64 `json:"GroupId,omitempty" name:"GroupId"` // 通道ID,固定字段:0 ChannelId *uint64 `json:"ChannelId,omitempty" name:"ChannelId"` // 获取的最新交易的区块数量,取值范围1~5 LatestBlockNumber *uint64 `json:"LatestBlockNumber,omitempty" name:"LatestBlockNumber"` // 调用接口的组织名称,可以在组织管理列表中获取当前组织的名称 GroupName *string `json:"GroupName,omitempty" name:"GroupName"` // 需要查询的通道名称,可在通道详情或列表中获取 ChannelName *string `json:"ChannelName,omitempty" name:"ChannelName"` // 区块链网络ID,可在区块链网络详情或列表中获取 ClusterId *string `json:"ClusterId,omitempty" name:"ClusterId"` // 需要获取的起始交易偏移 Offset *uint64 `json:"Offset,omitempty" name:"Offset"` // 需要获取的交易数量 Limit *uint64 `json:"Limit,omitempty" name:"Limit"` }
func NewGetLatesdTransactionListRequest ¶
func NewGetLatesdTransactionListRequest() (request *GetLatesdTransactionListRequest)
func (*GetLatesdTransactionListRequest) FromJsonString ¶
func (r *GetLatesdTransactionListRequest) FromJsonString(s string) error
func (*GetLatesdTransactionListRequest) ToJsonString ¶
func (r *GetLatesdTransactionListRequest) ToJsonString() string
type GetLatesdTransactionListResponse ¶
type GetLatesdTransactionListResponse struct { *tchttp.BaseResponse Response *struct { // 交易总数量 TotalCount *uint64 `json:"TotalCount,omitempty" name:"TotalCount"` // 交易列表 TransactionList []*TransactionItem `json:"TransactionList,omitempty" name:"TransactionList" list` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewGetLatesdTransactionListResponse ¶
func NewGetLatesdTransactionListResponse() (response *GetLatesdTransactionListResponse)
func (*GetLatesdTransactionListResponse) FromJsonString ¶
func (r *GetLatesdTransactionListResponse) FromJsonString(s string) error
func (*GetLatesdTransactionListResponse) ToJsonString ¶
func (r *GetLatesdTransactionListResponse) ToJsonString() string
type InvokeRequest ¶
type InvokeRequest struct { *tchttp.BaseRequest // 模块名,固定字段:transaction Module *string `json:"Module,omitempty" name:"Module"` // 操作名,固定字段:invoke Operation *string `json:"Operation,omitempty" name:"Operation"` // 区块链网络ID,可在区块链网络详情或列表中获取 ClusterId *string `json:"ClusterId,omitempty" name:"ClusterId"` // 业务所属智能合约名称,可在智能合约详情或列表中获取 ChaincodeName *string `json:"ChaincodeName,omitempty" name:"ChaincodeName"` // 业务所属通道名称,可在通道详情或列表中获取 ChannelName *string `json:"ChannelName,omitempty" name:"ChannelName"` // 对该笔交易进行背书的节点列表(包括节点名称和节点所属组织名称,详见数据结构一节),可以在通道详情中获取该通道上的节点名称极其所属组织名称 Peers []*PeerSet `json:"Peers,omitempty" name:"Peers" list` // 该笔交易需要调用的智能合约中的函数名称 FuncName *string `json:"FuncName,omitempty" name:"FuncName"` // 调用合约的组织名称,可以在组织管理列表中获取当前组织的名称 GroupName *string `json:"GroupName,omitempty" name:"GroupName"` // 被调用的函数参数列表 Args []*string `json:"Args,omitempty" name:"Args" list` // 同步调用标识,可选参数,值为0或者不传表示使用同步方法调用,调用后会等待交易执行后再返回执行结果;值为1时表示使用异步方式调用Invoke,执行后会立即返回交易对应的Txid,后续需要通过GetInvokeTx这个API查询该交易的执行结果。(对于逻辑较为简单的交易,可以使用同步模式;对于逻辑较为复杂的交易,建议使用异步模式,否则容易导致API因等待时间过长,返回等待超时) AsyncFlag *uint64 `json:"AsyncFlag,omitempty" name:"AsyncFlag"` }
func NewInvokeRequest ¶
func NewInvokeRequest() (request *InvokeRequest)
func (*InvokeRequest) FromJsonString ¶
func (r *InvokeRequest) FromJsonString(s string) error
func (*InvokeRequest) ToJsonString ¶
func (r *InvokeRequest) ToJsonString() string
type InvokeResponse ¶
type InvokeResponse struct { *tchttp.BaseResponse Response *struct { // 交易ID Txid *string `json:"Txid,omitempty" name:"Txid"` // 交易执行结果 Events *string `json:"Events,omitempty" name:"Events"` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewInvokeResponse ¶
func NewInvokeResponse() (response *InvokeResponse)
func (*InvokeResponse) FromJsonString ¶
func (r *InvokeResponse) FromJsonString(s string) error
func (*InvokeResponse) ToJsonString ¶
func (r *InvokeResponse) ToJsonString() string
type QueryRequest ¶
type QueryRequest struct { *tchttp.BaseRequest // 模块名,固定字段:transaction Module *string `json:"Module,omitempty" name:"Module"` // 操作名,固定字段:query Operation *string `json:"Operation,omitempty" name:"Operation"` // 区块链网络ID,可在区块链网络详情或列表中获取 ClusterId *string `json:"ClusterId,omitempty" name:"ClusterId"` // 业务所属智能合约名称,可在智能合约详情或列表中获取 ChaincodeName *string `json:"ChaincodeName,omitempty" name:"ChaincodeName"` // 业务所属通道名称,可在通道详情或列表中获取 ChannelName *string `json:"ChannelName,omitempty" name:"ChannelName"` // 执行该查询交易的节点列表(包括节点名称和节点所属组织名称,详见数据结构一节),可以在通道详情中获取该通道上的节点名称极其所属组织名称 Peers []*PeerSet `json:"Peers,omitempty" name:"Peers" list` // 该笔交易查询需要调用的智能合约中的函数名称 FuncName *string `json:"FuncName,omitempty" name:"FuncName"` // 调用合约的组织名称,可以在组织管理列表中获取当前组织的名称 GroupName *string `json:"GroupName,omitempty" name:"GroupName"` // 被调用的函数参数列表 Args []*string `json:"Args,omitempty" name:"Args" list` }
func NewQueryRequest ¶
func NewQueryRequest() (request *QueryRequest)
func (*QueryRequest) FromJsonString ¶
func (r *QueryRequest) FromJsonString(s string) error
func (*QueryRequest) ToJsonString ¶
func (r *QueryRequest) ToJsonString() string
type QueryResponse ¶
type QueryResponse struct { *tchttp.BaseResponse Response *struct { // 查询结果数据 Data []*string `json:"Data,omitempty" name:"Data" list` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewQueryResponse ¶
func NewQueryResponse() (response *QueryResponse)
func (*QueryResponse) FromJsonString ¶
func (r *QueryResponse) FromJsonString(s string) error
func (*QueryResponse) ToJsonString ¶
func (r *QueryResponse) ToJsonString() string
type TransactionItem ¶
type TransactionItem struct { // 交易ID TransactionId *string `json:"TransactionId,omitempty" name:"TransactionId"` // 交易hash TransactionHash *string `json:"TransactionHash,omitempty" name:"TransactionHash"` // 创建交易的组织名 CreateOrgName *string `json:"CreateOrgName,omitempty" name:"CreateOrgName"` // 交易所在区块号 BlockId *uint64 `json:"BlockId,omitempty" name:"BlockId"` // 交易类型(普通交易和配置交易) TransactionType *string `json:"TransactionType,omitempty" name:"TransactionType"` // 交易创建时间 CreateTime *string `json:"CreateTime,omitempty" name:"CreateTime"` // 交易所在区块高度 BlockHeight *uint64 `json:"BlockHeight,omitempty" name:"BlockHeight"` // 交易状态 TransactionStatus *string `json:"TransactionStatus,omitempty" name:"TransactionStatus"` }
Click to show internal directories.
Click to hide internal directories.