Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@stacks/stacks-blockchain-api-types

Package Overview
Dependencies
Maintainers
8
Versions
226
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stacks/stacks-blockchain-api-types - npm Package Compare versions

Comparing version 0.64.2 to 0.65.0

api/info/get-status.example.json

20

api/address/get-address-transactions-with-transfers.example.json

@@ -70,2 +70,18 @@ {

}
],
"ft_transfers": [
{
"amount": "103",
"asset_identifier": "SP466FNC0P7JWTNM2R9T199QRZN1MYEDTAR0KP27.miamicoin-token::miamicoin",
"sender": "SP3FBR2AGK5H9QBDH3EEN6DF8EK8JY7RX8QJ5SVTE",
"recipient": "SP24Q9PK9DNTA2V89APY8WNBJ1QYKKSW9SWB04RJP"
}
],
"nft_transfers": [
{
"asset_identifier": "SP497E7RX3233ATBS2AB9G4WTHB63X5PBSP5VGAQ.boom-nfts::boom",
"value": { "hex": "0x00", "repr": "0" },
"sender": "SP3FBR2AGK5H9QBDH3EEN6DF8EK8JY7RX8QJ5SVTE",
"recipient": "SP24Q9PK9DNTA2V89APY8WNBJ1QYKKSW9SWB04RJP"
}
]

@@ -113,5 +129,7 @@ },

}
]
],
"ft_transfers": [],
"nft_transfers": []
}
]
}

@@ -48,4 +48,60 @@ {

}
},
"ft_transfers": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"amount", "asset_identifier"
],
"properties": {
"asset_identifier": {
"type": "string",
"description": "Fungible Token asset identifier."
},
"amount": {
"type": "string",
"description": "Amount transferred as an integer string. This balance does not factor in possible SIP-010 decimals."
},
"sender": {
"type": "string",
"description": "Principal that sent the asset."
},
"recipient": {
"type": "string",
"description": "Principal that received the asset."
}
}
}
},
"nft_transfers": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"asset_identifier", "value"
],
"properties": {
"asset_identifier": {
"type": "string",
"description": "Non Fungible Token asset identifier."
},
"value": {
"type": "string",
"description": "Non Fungible Token asset value."
},
"sender": {
"type": "string",
"description": "Principal that sent the asset."
},
"recipient": {
"type": "string",
"description": "Principal that received the asset."
}
}
}
}
}
}

@@ -28,3 +28,8 @@ {

"microblock_sequence",
"microblock_canonical"
"microblock_canonical",
"execution_cost_read_count",
"execution_cost_read_length",
"execution_cost_runtime",
"execution_cost_write_count",
"execution_cost_write_length"
],

@@ -109,2 +114,22 @@ "additionalProperties": false,

},
"execution_cost_read_count": {
"type": "integer",
"description": "Execution cost read count."
},
"execution_cost_read_length": {
"type": "integer",
"description": "Execution cost read length."
},
"execution_cost_runtime": {
"type": "integer",
"description": "Execution cost runtime."
},
"execution_cost_write_count": {
"type": "integer",
"description": "Execution cost write count."
},
"execution_cost_write_length": {
"type": "integer",
"description": "Execution cost write length."
},
"events" : {

@@ -111,0 +136,0 @@ "type": "array",

2

package.json
{
"name": "@stacks/stacks-blockchain-api-types",
"version": "0.64.2",
"version": "0.65.0",
"access": "public",

@@ -5,0 +5,0 @@ "description": "TypeScript descriptions of Stacks 2.0 blockchain API entities",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc