Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aa-sdk/core

Package Overview
Dependencies
Maintainers
0
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aa-sdk/core - npm Package Compare versions

Comparing version 4.3.0 to 4.3.1

4

dist/esm/utils/bigint.js

@@ -71,5 +71,5 @@ import { keccak256, toHex } from "viem";

const val = roundingMode === RoundingMode.ROUND_UP
? BigInt(base) * BigInt(multiplier * 10 ** decimalPlaces) +
? BigInt(base) * BigInt(Math.round(multiplier * 10 ** decimalPlaces)) +
BigInt(10 ** decimalPlaces - 1)
: BigInt(base) * BigInt(multiplier * 10 ** decimalPlaces);
: BigInt(base) * BigInt(Math.round(multiplier * 10 ** decimalPlaces));
return val / BigInt(10 ** decimalPlaces);

@@ -76,0 +76,0 @@ };

@@ -1,1 +0,1 @@

export declare const VERSION = "4.3.0";
export declare const VERSION = "4.3.1";
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.3.0";
export const VERSION = "4.3.1";
//# sourceMappingURL=version.js.map

@@ -1,2 +0,2 @@

export declare const VERSION = "4.3.0";
export declare const VERSION = "4.3.1";
//# sourceMappingURL=version.d.ts.map
{
"name": "@aa-sdk/core",
"license": "MIT",
"version": "4.3.0",
"version": "4.3.1",
"description": "viem based SDK that enables interactions with ERC-4337 Smart Accounts. ABIs are based off the definitions generated in @account-abstraction/contracts",

@@ -67,3 +67,3 @@ "author": "Alchemy",

"homepage": "https://github.com/alchemyplatform/aa-sdk#readme",
"gitHead": "78c86103afeee309748c9d604af58bc7707c8b16"
"gitHead": "68052c506336d4c7eee1d2ee78e9b07892488351"
}

@@ -94,5 +94,5 @@ import { keccak256, toHex } from "viem";

roundingMode === RoundingMode.ROUND_UP
? BigInt(base) * BigInt(multiplier * 10 ** decimalPlaces) +
? BigInt(base) * BigInt(Math.round(multiplier * 10 ** decimalPlaces)) +
BigInt(10 ** decimalPlaces - 1)
: BigInt(base) * BigInt(multiplier * 10 ** decimalPlaces);
: BigInt(base) * BigInt(Math.round(multiplier * 10 ** decimalPlaces));

@@ -99,0 +99,0 @@ return val / BigInt(10 ** decimalPlaces);

// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.3.0";
export const VERSION = "4.3.1";

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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