You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi/experimental/go-client-generated/docs/ContractDeployment.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,11 @@ Name | Type | Description | Notes
9
9
**TransactionId** | **string** | | [optional][default to null]
10
10
**TxIndex** | **string** | Position of the deploying transaction within its block. | [optional][default to null]
11
11
**EventIndex** | **string** | Position of the contract event within its transaction. | [optional][default to null]
12
-
**Code** | **string** | Base64-encoded Cadence source code of the contract deployed. | [default to null]
12
+
**Code** | **string** | Base64-encoded Cadence source code of the contract deployed. | [optional][default to null]
13
13
**CodeHash** | **string** | Hex-encoded SHA3-256 hash of the contract code. | [default to null]
14
14
**IsPlaceholder** | **bool** | True if the deployment was created during bootstrapping based on the current chain state, not based on a protocol event. When true, block_height, transaction_id, tx_index, and event_index are absent. | [optional][default to null]
15
15
**Transaction** | [***Transaction**](Transaction.md) | | [optional][default to null]
16
+
**Result** | [***TransactionResult**](TransactionResult.md) | | [optional][default to null]
16
17
**Expandable** | [***ContractDeploymentExpandable**](ContractDeployment__expandable.md) | | [default to null]
17
18
**Links** | [***Links**](Links.md) | | [optional][default to null]
Copy file name to clipboardExpand all lines: openapi/experimental/go-client-generated/docs/ScheduledTransaction.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
18
18
**CreatedTransactionId** | **string** | | [default to null]
19
19
**ExecutedTransactionId** | **string** | | [optional][default to null]
20
20
**CancelledTransactionId** | **string** | | [optional][default to null]
21
+
**IsPlaceholder** | **bool** | True if the scheduled transaction was created during bootstrapping based on the current chain state, not based on a protocol event. When true, block_height, transaction_id, tx_index, and event_index are absent. | [optional][default to null]
21
22
**Transaction** | [***Transaction**](Transaction.md) | | [optional][default to null]
22
23
**Result** | [***TransactionResult**](TransactionResult.md) | | [optional][default to null]
23
24
**HandlerContract** | [***ContractDeployment**](ContractDeployment.md) | | [optional][default to null]
Copy file name to clipboardExpand all lines: openapi/experimental/go-client-generated/model_contract_deployment.go
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,13 @@ type ContractDeployment struct {
19
19
// Position of the contract event within its transaction.
20
20
EventIndexstring`json:"event_index,omitempty"`
21
21
// Base64-encoded Cadence source code of the contract deployed.
22
-
Codestring`json:"code"`
22
+
Codestring`json:"code,omitempty"`
23
23
// Hex-encoded SHA3-256 hash of the contract code.
24
24
CodeHashstring`json:"code_hash"`
25
25
// True if the deployment was created during bootstrapping based on the current chain state, not based on a protocol event. When true, block_height, transaction_id, tx_index, and event_index are absent.
Copy file name to clipboardExpand all lines: openapi/experimental/go-client-generated/model_contract_deployment__expandable.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ package swagger
10
10
11
11
// Contains URI links for fields not included in the response. When a field is expanded via the `expand` query parameter, it appears inline and is removed from `_expandable`.
12
12
typeContractDeploymentExpandablestruct {
13
+
// Link to fetch the Cadence source code of this deployment.
14
+
Codestring`json:"code,omitempty"`
13
15
// Link to fetch the full transaction that applied this deployment.
// True if the scheduled transaction was created during bootstrapping based on the current chain state, not based on a protocol event. When true, block_height, transaction_id, tx_index, and event_index are absent.
Copy file name to clipboardExpand all lines: openapi/experimental/openapi.yaml
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1126,6 +1126,9 @@ components:
1126
1126
cancelled_transaction_id:
1127
1127
description: Flow transaction ID of the cancellation transaction.
1128
1128
$ref: "#/components/schemas/Identifier"
1129
+
is_placeholder:
1130
+
description: True if the scheduled transaction was created during bootstrapping based on the current chain state, not based on a protocol event. When true, block_height, transaction_id, tx_index, and event_index are absent.
1131
+
type: boolean
1129
1132
transaction:
1130
1133
$ref: "#/components/schemas/Transaction"
1131
1134
result:
@@ -1176,7 +1179,6 @@ components:
1176
1179
required:
1177
1180
- contract_id
1178
1181
- address
1179
-
- code
1180
1182
- code_hash
1181
1183
- _expandable
1182
1184
properties:
@@ -1214,10 +1216,16 @@ components:
1214
1216
type: boolean
1215
1217
transaction:
1216
1218
$ref: "#/components/schemas/Transaction"
1219
+
result:
1220
+
$ref: "#/components/schemas/TransactionResult"
1217
1221
_expandable:
1218
1222
type: object
1219
1223
description: Contains URI links for fields not included in the response. When a field is expanded via the `expand` query parameter, it appears inline and is removed from `_expandable`.
1220
1224
properties:
1225
+
code:
1226
+
type: string
1227
+
format: uri
1228
+
description: Link to fetch the Cadence source code of this deployment.
0 commit comments