@taquito/rpc 19.0.2 → 19.1.0-RC.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/version.js +2 -2
- package/dist/taquito-rpc.es6.js +2 -2
- package/dist/taquito-rpc.umd.js +2 -2
- package/dist/types/types.d.ts +5 -23
- package/package.json +5 -5
package/dist/lib/version.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
5
5
|
exports.VERSION = {
|
|
6
|
-
"commitHash": "
|
|
7
|
-
"version": "19.0.2"
|
|
6
|
+
"commitHash": "1aa9945ea2318318f16f494216a1c09801fa4bf8",
|
|
7
|
+
"version": "19.1.0-RC.2"
|
|
8
8
|
};
|
package/dist/taquito-rpc.es6.js
CHANGED
|
@@ -1202,8 +1202,8 @@ var OpKind;
|
|
|
1202
1202
|
|
|
1203
1203
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
1204
1204
|
const VERSION = {
|
|
1205
|
-
"commitHash": "
|
|
1206
|
-
"version": "19.0.2"
|
|
1205
|
+
"commitHash": "1aa9945ea2318318f16f494216a1c09801fa4bf8",
|
|
1206
|
+
"version": "19.1.0-RC.2"
|
|
1207
1207
|
};
|
|
1208
1208
|
|
|
1209
1209
|
/***
|
package/dist/taquito-rpc.umd.js
CHANGED
|
@@ -1203,8 +1203,8 @@
|
|
|
1203
1203
|
|
|
1204
1204
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
1205
1205
|
const VERSION = {
|
|
1206
|
-
"commitHash": "
|
|
1207
|
-
"version": "19.0.2"
|
|
1206
|
+
"commitHash": "1aa9945ea2318318f16f494216a1c09801fa4bf8",
|
|
1207
|
+
"version": "19.1.0-RC.2"
|
|
1208
1208
|
};
|
|
1209
1209
|
|
|
1210
1210
|
/***
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1027,33 +1027,16 @@ export interface ScriptedContracts {
|
|
|
1027
1027
|
storage: MichelsonV1Expression;
|
|
1028
1028
|
}
|
|
1029
1029
|
export type BondId = {
|
|
1030
|
-
smart_rollup?: never;
|
|
1031
|
-
tx_rollup: string;
|
|
1032
|
-
} | {
|
|
1033
1030
|
smart_rollup: string;
|
|
1034
|
-
tx_rollup?: never;
|
|
1035
1031
|
};
|
|
1036
|
-
export
|
|
1037
|
-
kind: BalanceUpdateKindEnum;
|
|
1038
|
-
category?: BalanceUpdateCategoryEnum;
|
|
1039
|
-
delegate?: string;
|
|
1040
|
-
cycle?: number;
|
|
1041
|
-
contract?: string;
|
|
1042
|
-
change: string;
|
|
1043
|
-
origin?: MetadataBalanceUpdatesOriginEnum;
|
|
1044
|
-
participation?: boolean;
|
|
1045
|
-
revelation?: boolean;
|
|
1046
|
-
committer?: string;
|
|
1047
|
-
bond_id?: BondId;
|
|
1048
|
-
}
|
|
1049
|
-
export type OperationBalanceUpdates = OperationBalanceUpdatesItem[];
|
|
1032
|
+
export type OperationBalanceUpdates = OperationMetadataBalanceUpdates[];
|
|
1050
1033
|
export interface OperationObject {
|
|
1051
1034
|
branch?: string;
|
|
1052
1035
|
contents?: OperationContents[];
|
|
1053
1036
|
protocol?: string;
|
|
1054
1037
|
signature?: string;
|
|
1055
1038
|
}
|
|
1056
|
-
export type InternalOperationResultKindEnum = OpKind.
|
|
1039
|
+
export type InternalOperationResultKindEnum = OpKind.TRANSACTION | OpKind.ORIGINATION | OpKind.DELEGATION | OpKind.EVENT;
|
|
1057
1040
|
export type SuccessfulManagerOperationResultKindEnum = OpKind.REVEAL | OpKind.TRANSACTION | OpKind.ORIGINATION | OpKind.DELEGATION;
|
|
1058
1041
|
export type InternalOperationResultEnum = OperationResultReveal | OperationResultTransaction | OperationResultDelegation | OperationResultOrigination | OperationResultEvent;
|
|
1059
1042
|
export interface OperationResultTransferTicket {
|
|
@@ -1284,14 +1267,13 @@ export interface OperationMetadataBalanceUpdates {
|
|
|
1284
1267
|
contract?: string;
|
|
1285
1268
|
change: string;
|
|
1286
1269
|
origin?: MetadataBalanceUpdatesOriginEnum;
|
|
1287
|
-
delayed_operation_hash?: string;
|
|
1288
1270
|
category?: MetadataBalanceUpdatesCategoryEnum;
|
|
1289
1271
|
staker?: FrozenStaker | Staker;
|
|
1290
1272
|
delegate?: string;
|
|
1291
1273
|
participation?: boolean;
|
|
1292
1274
|
revelation?: boolean;
|
|
1293
1275
|
committer?: string;
|
|
1294
|
-
bond_id?:
|
|
1276
|
+
bond_id?: BondId;
|
|
1295
1277
|
cycle?: number;
|
|
1296
1278
|
delegator?: string;
|
|
1297
1279
|
}
|
|
@@ -1365,7 +1347,7 @@ export interface OperationContentsAndResultMetadataOrigination {
|
|
|
1365
1347
|
operation_result: OperationResultOrigination;
|
|
1366
1348
|
internal_operation_results?: InternalOperationResult[];
|
|
1367
1349
|
}
|
|
1368
|
-
export type ConstantsResponse = ConstantsResponseCommon &
|
|
1350
|
+
export type ConstantsResponse = ConstantsResponseCommon & ConstantsResponseProto019 & ConstantsResponseProto017 & ConstantsResponseProto016 & ConstantsResponseProto015 & ConstantsResponseProto014 & ConstantsResponseProto013 & ConstantsResponseProto012 & ConstantsResponseProto011 & ConstantsResponseProto010 & ConstantsResponseProto009 & ConstantsResponseProto008 & ConstantsResponseProto007 & ConstantsResponseProto006 & ConstantsResponseProto005 & ConstantsResponseProto004 & ConstantsResponseProto003 & ConstantsResponseProto001And002;
|
|
1369
1351
|
export interface ConstantsResponseCommon {
|
|
1370
1352
|
proof_of_work_nonce_size: number;
|
|
1371
1353
|
nonce_length: number;
|
|
@@ -1393,7 +1375,7 @@ export type Ratio = {
|
|
|
1393
1375
|
numerator: number;
|
|
1394
1376
|
denominator: number;
|
|
1395
1377
|
};
|
|
1396
|
-
export interface
|
|
1378
|
+
export interface ConstantsResponseProto019 extends Omit<ConstantsResponseProto017, 'baking_reward_bonus_per_slot' | 'baking_reward_fixed_portion' | 'double_baking_punishment' | 'endorsing_reward_per_slot' | 'frozen_deposits_percentage' | 'liquidity_baking_subsidy' | 'ratio_of_frozen_deposits_slashed_per_double_endorsement' | 'seed_nonce_revelation_tip' | 'smart_rollup_enable' | 'tx_rollup_commitment_bond' | 'tx_rollup_cost_per_byte_ema_factor' | 'tx_rollup_enable' | 'tx_rollup_finality_period' | 'tx_rollup_hard_size_limit_per_inbox' | 'tx_rollup_hard_size_limit_per_message' | 'tx_rollup_max_commitments_count' | 'tx_rollup_max_inboxes_count' | 'tx_rollup_max_messages_per_inbox' | 'tx_rollup_max_ticket_payload_size' | 'tx_rollup_max_withdrawals_per_batch' | 'tx_rollup_origination_size' | 'tx_rollup_rejection_max_proof_size' | 'tx_rollup_sunset_level' | 'tx_rollup_withdraw_period'> {
|
|
1397
1379
|
adaptive_issuance_activation_vote_enable: boolean;
|
|
1398
1380
|
adaptive_issuance_launch_ema_threshold: number;
|
|
1399
1381
|
adaptive_rewards_params: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/rpc",
|
|
3
|
-
"version": "19.0.2",
|
|
3
|
+
"version": "19.1.0-RC.2",
|
|
4
4
|
"description": "Provides low level methods, and types to invoke RPC calls from a Nomadic Tezos RPC node",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
]
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@taquito/core": "^19.0.2",
|
|
70
|
-
"@taquito/http-utils": "^19.0.2",
|
|
71
|
-
"@taquito/utils": "^19.0.2",
|
|
69
|
+
"@taquito/core": "^19.1.0-RC.2",
|
|
70
|
+
"@taquito/http-utils": "^19.1.0-RC.2",
|
|
71
|
+
"@taquito/utils": "^19.1.0-RC.2",
|
|
72
72
|
"bignumber.js": "^9.1.2"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
"ts-toolbelt": "^9.6.0",
|
|
99
99
|
"typescript": "~5.2.2"
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "72feb924392ac02aa06f08a9c4f535a876ac57d8"
|
|
102
102
|
}
|