New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

stellar-base

Package Overview
Dependencies
Maintainers
9
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stellar-base - npm Package Compare versions

Comparing version 8.2.2-soroban.10 to 8.2.2-soroban.11

11

lib/fee_bump_transaction.js

@@ -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 @@

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc