mirror of
https://github.com/alexgo-io/stacks-subnets.git
synced 2026-04-29 20:25:47 +08:00
Merge branch 'develop' into feat/miner-structured-logging
This commit is contained in:
@@ -73,8 +73,8 @@ paths:
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
description: The Stacks chain tip to query from
|
||||
|
||||
description: The Stacks chain tip to query from. If tip == latest, the query will be run from the latest
|
||||
known tip (includes unconfirmed state).
|
||||
/v2/map_entry/{contract_address}/{contract_name}/{map_name}:
|
||||
post:
|
||||
summary: Get specific data-map inside a contract
|
||||
@@ -126,7 +126,8 @@ paths:
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
description: The Stacks chain tip to query from
|
||||
description: The Stacks chain tip to query from. If tip == latest, the query will be run from the latest
|
||||
known tip (includes unconfirmed state).
|
||||
x-codegen-request-body-name: key
|
||||
requestBody:
|
||||
description: Hex string serialization of the lookup key (which should be a Clarity value)
|
||||
@@ -174,7 +175,8 @@ paths:
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
description: The Stacks chain tip to query from
|
||||
description: The Stacks chain tip to query from. If tip == latest, the query will be run from the latest
|
||||
known tip (includes unconfirmed state).
|
||||
required: false
|
||||
|
||||
/v2/contracts/call-read/{contract_address}/{contract_name}/{function_name}:
|
||||
@@ -222,7 +224,8 @@ paths:
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
description: The Stacks chain tip to query from
|
||||
description: The Stacks chain tip to query from. If tip == latest, the query will be run from the latest
|
||||
known tip (includes unconfirmed state).
|
||||
required: false
|
||||
requestBody:
|
||||
description: map of arguments and the simulated tx-sender where sender is either a Contract identifier or a normal Stacks address, and arguments is an array of hex serialized Clarity values.
|
||||
@@ -265,7 +268,8 @@ paths:
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
description: The Stacks chain tip to query from
|
||||
description: The Stacks chain tip to query from. If tip == latest, the query will be run from the latest
|
||||
known tip (includes unconfirmed state).
|
||||
responses:
|
||||
200:
|
||||
description: Success
|
||||
@@ -416,6 +420,13 @@ paths:
|
||||
$ref: ./api/core-node/get-pox.schema.json
|
||||
example:
|
||||
$ref: ./api/core-node/get-pox.example.json
|
||||
parameters:
|
||||
- name: tip
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
description: The Stacks chain tip to query from. If tip == latest, the query will be run from the latest
|
||||
known tip (includes unconfirmed state).
|
||||
|
||||
/v2/traits/{contract_address}/{contract_name}/{trait_contract_address}/{trait_ contract_name}/{trait_name}:
|
||||
get:
|
||||
@@ -468,4 +479,7 @@ paths:
|
||||
in: query
|
||||
schema:
|
||||
type: string
|
||||
description: The Stacks chain tip to query from
|
||||
description: |
|
||||
The Stacks chain tip to query from.
|
||||
If tip == "latest", the query will be run from the latest known tip (includes unconfirmed state).
|
||||
If the tip is left unspecified, the stacks chain tip will be selected (only includes confirmed state).
|
||||
|
||||
Reference in New Issue
Block a user