stellar-base
Advanced tools
Comparing version 8.2.2-soroban.10 to 8.2.2-soroban.11
@@ -128,2 +128,13 @@ 'use strict'; | ||
/** | ||
* @type {Operation[]} | ||
* @readonly | ||
*/ | ||
}, { | ||
key: 'operations', | ||
get: function get() { | ||
return this._innerTransaction.operations; | ||
} | ||
/** | ||
* @type {string} | ||
@@ -130,0 +141,0 @@ * @readonly |
@@ -59,2 +59,11 @@ 'use strict'; | ||
// Temporary warning for contract auth-next signatures not being supported. | ||
var requiresContractSignatures = (this.operations || []).some(function (op) { | ||
return op.type === 'invokeHostFunction' && op.auth.some(function (a) { | ||
return a.addressWithNonce(); | ||
}); | ||
}); | ||
if (requiresContractSignatures) { | ||
throw new Error('Soroban contract signatures are not supported in this version of the SDK.'); | ||
} | ||
var txHash = this.hash(); | ||
@@ -61,0 +70,0 @@ |
{ | ||
"name": "stellar-base", | ||
"version": "8.2.2-soroban.10", | ||
"version": "8.2.2-soroban.11", | ||
"description": "Low level stellar support library", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -859,2 +859,3 @@ // TypeScript Version: 2.9 | ||
footprint: xdr.LedgerFootprint; | ||
auth: xdr.ContractAuth[]; | ||
} | ||
@@ -861,0 +862,0 @@ function invokeHostFunction( |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
4148931
41259