|
923 | 923 | "description": "TransactionParams contains the parameters that help a client construct\na new transaction.",
|
924 | 924 | "properties": {
|
925 | 925 | "base-fee": {
|
926 |
| - "description": "The current base transaction fee (not per byte) required for the\ntxn to validate.", |
| 926 | + "description": "The current base transaction fee (not per byte) required for the txn to validate with the current congestion conditions.", |
927 | 927 | "type": "integer",
|
928 | 928 | "x-go-type": "uint64"
|
929 | 929 | },
|
|
932 | 932 | "type": "string"
|
933 | 933 | },
|
934 | 934 | "fee": {
|
935 |
| - "description": "Fee id deprecated. It used to express the per-byte fee escalation.", |
| 935 | + "description": "Fee is deprecated. It used to express the per-byte fee escalation.", |
936 | 936 | "type": "integer",
|
937 | 937 | "x-go-type": "uint64"
|
938 | 938 | },
|
|
952 | 952 | "x-go-type": "basics.Round"
|
953 | 953 | },
|
954 | 954 | "min-fee": {
|
955 |
| - "description": "The minimum transaction fee (not per byte) required for the\ntxn to validate for the current network protocol.", |
| 955 | + "description": "The minimum transaction fee (not per byte) required for the txn to validate for the current network protocol.", |
956 | 956 | "type": "integer",
|
957 | 957 | "x-go-type": "uint64"
|
958 | 958 | }
|
|
3609 | 3609 | },
|
3610 | 3610 | "/v2/accounts/{address}/transactions/pending": {
|
3611 | 3611 | "get": {
|
3612 |
| - "description": "Get the list of pending transactions by address, sorted by priority, in decreasing order, truncated at the end at MAX. If MAX = 0, returns all pending transactions.\n", |
| 3612 | + "description": "Get the list of pending transactions by address, sorted by priority, in decreasing order, truncated at the end at MAX. If MAX = 0, returns all pending transactions.", |
3613 | 3613 | "operationId": "GetPendingTransactionsByAddress",
|
3614 | 3614 | "parameters": [
|
3615 | 3615 | {
|
|
7263 | 7263 | "description": "TransactionParams contains the parameters that help a client construct\na new transaction.",
|
7264 | 7264 | "properties": {
|
7265 | 7265 | "base-fee": {
|
7266 |
| - "description": "The current base transaction fee (not per byte) required for the\ntxn to validate.", |
| 7266 | + "description": "The current base transaction fee (not per byte) required for the txn to validate with the current congestion conditions.", |
7267 | 7267 | "type": "integer",
|
7268 | 7268 | "x-go-type": "uint64"
|
7269 | 7269 | },
|
|
7272 | 7272 | "type": "string"
|
7273 | 7273 | },
|
7274 | 7274 | "fee": {
|
7275 |
| - "description": "Fee id deprecated. It used to express the per-byte fee escalation.", |
| 7275 | + "description": "Fee is deprecated. It used to express the per-byte fee escalation.", |
7276 | 7276 | "type": "integer",
|
7277 | 7277 | "x-go-type": "uint64"
|
7278 | 7278 | },
|
|
7292 | 7292 | "x-go-type": "basics.Round"
|
7293 | 7293 | },
|
7294 | 7294 | "min-fee": {
|
7295 |
| - "description": "The minimum transaction fee (not per byte) required for the\ntxn to validate for the current network protocol.", |
| 7295 | + "description": "The minimum transaction fee (not per byte) required for the txn to validate for the current network protocol.", |
7296 | 7296 | "type": "integer",
|
7297 | 7297 | "x-go-type": "uint64"
|
7298 | 7298 | }
|
|
7355 | 7355 | },
|
7356 | 7356 | "/v2/transactions/pending": {
|
7357 | 7357 | "get": {
|
7358 |
| - "description": "Get the list of pending transactions, sorted by priority, in decreasing order, truncated at the end at MAX. If MAX = 0, returns all pending transactions.\n", |
| 7358 | + "description": "Get the list of pending transactions, sorted by priority, in decreasing order, truncated at the end at MAX. If MAX = 0, returns all pending transactions.", |
7359 | 7359 | "operationId": "GetPendingTransactions",
|
7360 | 7360 | "parameters": [
|
7361 | 7361 | {
|
|
7496 | 7496 | },
|
7497 | 7497 | "/v2/transactions/pending/{txid}": {
|
7498 | 7498 | "get": {
|
7499 |
| - "description": "Given a transaction ID of a recently submitted transaction, it returns information about it. There are several cases when this might succeed:\n- transaction committed (committed round > 0)\n- transaction still in the pool (committed round = 0, pool error = \"\")\n- transaction removed from pool due to error (committed round = 0, pool error != \"\")\nOr the transaction may have happened sufficiently long ago that the node no longer remembers it, and this will return an error.\n", |
| 7499 | + "description": "Given a transaction ID of a recently submitted transaction, it returns information about it. There are several cases when this might succeed:\n- transaction committed (committed round > 0)\n- transaction still in the pool (committed round = 0, pool error = \"\")\n- transaction removed from pool due to error (committed round = 0, pool error != \"\")\nOr the transaction may have happened sufficiently long ago that the node no longer remembers it, and this will return an error.", |
7500 | 7500 | "operationId": "PendingTransactionInformation",
|
7501 | 7501 | "parameters": [
|
7502 | 7502 | {
|
|
0 commit comments