Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
"type": "boolean",
"description": "Denotes whether the originating account is the same as the paying account"
},
"sponsor_address": {
"type": "string"
},
"post_condition_mode": {
"$ref": "../post-conditions/post-condition-mode.schema.json"
},
Expand Down
3 changes: 3 additions & 0 deletions docs/entities/transactions/abstract-transaction.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@
"type": "boolean",
"description": "Denotes whether the originating account is the same as the paying account"
},
"sponsor_address": {
"type": "string"
},
"post_condition_mode": {
"$ref": "../post-conditions/post-condition-mode.schema.json"
}
Expand Down
10 changes: 10 additions & 0 deletions docs/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ export interface MempoolTokenTransferTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
/**
* A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node.
Expand Down Expand Up @@ -298,6 +299,7 @@ export interface MempoolSmartContractTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
/**
* A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node.
Expand Down Expand Up @@ -337,6 +339,7 @@ export interface MempoolContractCallTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
/**
* A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node.
Expand Down Expand Up @@ -376,6 +379,7 @@ export interface MempoolPoisonMicroblockTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
/**
* A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node.
Expand Down Expand Up @@ -417,6 +421,7 @@ export interface MempoolCoinbaseTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
/**
* A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node.
Expand Down Expand Up @@ -664,6 +669,7 @@ export interface TokenTransferTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
tx_type: "token_transfer";
/**
Expand Down Expand Up @@ -741,6 +747,7 @@ export interface SmartContractTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
tx_type: "smart_contract";
/**
Expand Down Expand Up @@ -818,6 +825,7 @@ export interface ContractCallTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
tx_type: "contract_call";
/**
Expand Down Expand Up @@ -908,6 +916,7 @@ export interface PoisonMicroblockTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
tx_type: "poison_microblock";
poison_microblock: {
Expand Down Expand Up @@ -980,6 +989,7 @@ export interface CoinbaseTransaction {
* Denotes whether the originating account is the same as the paying account
*/
sponsored: boolean;
sponsor_address?: string;
post_condition_mode: PostConditionMode;
tx_type: "coinbase";
coinbase_payload: {
Expand Down
Loading