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

@manahippo/move-to-ts

Package Overview
Dependencies
Maintainers
1
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@manahippo/move-to-ts - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

1

dist/nativeFuncs.d.ts

@@ -38,2 +38,3 @@ import { HexString } from "aptos";

export declare function aptos_framework_account_create_address(bytes: U8[], $c: AptosDataCache): HexString;
export declare function aptos_framework_genesis_create_signer(addr: HexString, $c: AptosDataCache): HexString;
export declare function aptos_framework_account_create_signer(addr: HexString, $c: AptosDataCache): HexString;

@@ -40,0 +41,0 @@ declare class ModuleMetadata {

2

dist/parserRepo.d.ts

@@ -43,3 +43,3 @@ import { TypeTag } from "./typeTag";

loadEvents(client: AptosClient, address: HexString, containerTypeTag: TypeTag, field: string, query?: {
start?: BigInt;
start?: bigint | number;
limit?: number;

@@ -46,0 +46,0 @@ }): Promise<any[]>;

{
"name": "@manahippo/move-to-ts",
"version": "0.3.3",
"version": "0.3.4",
"license": "MIT",

@@ -44,3 +44,3 @@ "scripts": {

"dependencies": {
"aptos": "1.3.13",
"aptos": "1.3.14",
"big-integer": "^1.6.51",

@@ -47,0 +47,0 @@ "elliptic": "^6.5.4",

@@ -378,2 +378,9 @@ import { HexString } from "aptos";

export function aptos_framework_genesis_create_signer(
addr: HexString,
$c: AptosDataCache
): HexString {
return aptos_framework_account_create_signer(addr, $c)
}
export function aptos_framework_account_create_signer(

@@ -380,0 +387,0 @@ addr: HexString,

@@ -333,3 +333,3 @@ import {

field: string,
query?: { start?: BigInt; limit?: number }
query?: { start?: bigint|number; limit?: number }
) {

@@ -336,0 +336,0 @@ if (!(containerTypeTag instanceof StructTag)) {

@@ -76,3 +76,3 @@ import {

| Types.TransactionPayload_EntryFunctionPayload,
max_gas = 1000
max_gas = 100000
) {

@@ -86,3 +86,3 @@ // send BCS transaction

payload,
{ maxGasAmount: BigInt(max_gas) }
{ maxGasAmount: BigInt(max_gas)}
);

@@ -144,3 +144,3 @@ // Signed BCS representation

| Types.TransactionPayload_EntryFunctionPayload,
max_gas = 1000
max_gas = 100000
) {

@@ -147,0 +147,0 @@ if (payload instanceof TxnBuilderTypes.TransactionPayload) {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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