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
2
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 2.0.0 to 2.0.1

11

dist/nativeFuncs.d.ts

@@ -14,5 +14,9 @@ import { HexString } from "aptos";

export declare function aptos_std_multi_ed25519_signature_verify_strict_internal(multisignature: U8[], public_key: U8[], message: U8[], $c: AptosDataCache): boolean;
export declare function aptos_std_multi_ed25519_sign_internal(sk: U8[], message: U8[], $c: AptosDataCache): U8[];
export declare function aptos_std_multi_ed25519_generate_keys_internal(threshold: U8, n: U8, $c: AptosDataCache): [U8[], U8[]];
export declare function aptos_std_multi_ed25519_public_key_validate_v2_internal(bytes: U8[], $c: AptosDataCache): boolean;
export declare function aptos_std_multi_ed25519_public_key_validate_internal(bytes: U8[], $c: AptosDataCache): boolean;
export declare function aptos_std_from_bcs_from_bytes(bytes: U8[], $c: AptosDataCache, $p: TypeTag[]): any;
export declare function aptos_std_aptos_hash_keccak256(bytes: U8[], $c: AptosDataCache): U8[];
export declare function aptos_std_aptos_hash_blake2b_256_internal(bytes: U8[], $c: AptosDataCache): U8[];
export declare function aptos_std_aptos_hash_ripemd160_internal(bytes: U8[], $c: AptosDataCache): U8[];

@@ -92,6 +96,10 @@ export declare function aptos_std_aptos_hash_sha2_512_internal(bytes: U8[], $c: AptosDataCache): U8[];

export declare function aptos_framework_code_request_publish(owner: HexString, expected_modules: ActualStringClass[], bundle: U8[][], policy: U8, $c: AptosDataCache): void;
export declare function aptos_framework_create_signer_create_signer(addr: HexString, $c: AptosDataCache): HexString;
export declare function aptos_framework_code_request_publish_with_allowed_deps(owner: HexString, expected_modules: ActualStringClass[], allowed_deps: any[], bundle: U8[][], policy: U8, $c: AptosDataCache): void;
export declare function aptos_std_bls12381_aggregate_pubkeys_internal(pubkeys: any, $c: AptosDataCache): [U8[], boolean];
export declare function aptos_std_bls12381_generate_keys_internal($c: AptosDataCache): [U8[], U8[]];
export declare function aptos_std_bls12381_aggregate_signatures_internal(signatures: any, $c: AptosDataCache): [U8[], boolean];
export declare function aptos_std_bls12381_generate_proof_of_possession_internal(sk: U8[], $c: AptosDataCache): U8[];
export declare function aptos_std_bls12381_validate_pubkey_internal(pubkey: U8[], $c: AptosDataCache): boolean;
export declare function aptos_std_bls12381_sign_internal(sk: U8[], msg: U8[], $c: AptosDataCache): U8[];
export declare function aptos_std_bls12381_signature_subgroup_check_internal(signature: any, $c: AptosDataCache): boolean;

@@ -103,2 +111,4 @@ export declare function aptos_std_bls12381_verify_aggregate_signature_internal(a: any, b: any, c: any, $c: AptosDataCache): boolean;

export declare function aptos_std_bls12381_verify_signature_share_internal(a: any, b: any, c: any, $c: AptosDataCache): boolean;
export declare function aptos_std_ed25519_generate_keys_internal($c: AptosDataCache): [U8[], U8[]];
export declare function aptos_std_ed25519_sign_internal(sk: U8[], msg: U8[], $c: AptosDataCache): U8[];
export declare function aptos_std_ed25519_public_key_validate_internal(pubkey: U8[], $c: AptosDataCache): boolean;

@@ -132,2 +142,3 @@ export declare function aptos_std_ed25519_signature_verify_strict_internal(signature: U8[], pubkey: U8[], message: U8[], $c: AptosDataCache): boolean;

export declare function aptos_framework_state_storage_get_state_storage_usage_only_at_epoch_beginning($c: any): ActualUsage;
export declare function aptos_framework_object_exists_at(object: HexString, $c: AptosDataCache, $p: TypeTag[]): boolean;
export declare class ActualAggregator {

@@ -134,0 +145,0 @@ typeTag: TypeTag;

2

package.json
{
"name": "@manahippo/move-to-ts",
"version": "2.0.0",
"version": "2.0.1",
"license": "MIT",

@@ -5,0 +5,0 @@ "scripts": {

@@ -120,2 +120,25 @@ import { HexString } from "aptos";

export function aptos_std_multi_ed25519_sign_internal(
sk: U8[],
message: U8[],
$c: AptosDataCache,
): U8[] {
throw new Error("Not implemented");
}
export function aptos_std_multi_ed25519_generate_keys_internal(
threshold: U8,
n: U8,
$c: AptosDataCache,
): [U8[], U8[]] {
throw new Error("Not implemented");
}
export function aptos_std_multi_ed25519_public_key_validate_v2_internal(
bytes: U8[],
$c: AptosDataCache,
): boolean{
throw new Error("Not implemented");
}
export function aptos_std_multi_ed25519_public_key_validate_internal(

@@ -142,2 +165,8 @@ bytes: U8[],

}
export function aptos_std_aptos_hash_blake2b_256_internal(
bytes: U8[],
$c: AptosDataCache
): U8[]{
throw new Error("Not implemented");
}

@@ -392,3 +421,3 @@ export function aptos_std_aptos_hash_ripemd160_internal(

export function aptos_framework_aggregator_destroy(aggregator: any, $c: any) {
throw new Error("Not Implemented");
}

@@ -574,2 +603,9 @@

export function aptos_framework_create_signer_create_signer(
addr: HexString,
$c: AptosDataCache,
): HexString {
return addr
}
export function aptos_framework_code_request_publish_with_allowed_deps(

@@ -597,2 +633,8 @@ owner: HexString,

export function aptos_std_bls12381_generate_keys_internal(
$c: AptosDataCache
): [U8[], U8[]]{
throw new Error("Not implemented");
}
export function aptos_std_bls12381_aggregate_signatures_internal(

@@ -605,2 +647,9 @@ signatures: any,

export function aptos_std_bls12381_generate_proof_of_possession_internal(
sk: U8[],
$c: AptosDataCache,
): U8[] {
throw new Error("Not implemented");
}
export function aptos_std_bls12381_validate_pubkey_internal(

@@ -613,2 +662,10 @@ pubkey: U8[],

export function aptos_std_bls12381_sign_internal(
sk: U8[],
msg: U8[],
$c: AptosDataCache,
): U8[] {
throw new Error("Not implemented");
}
export function aptos_std_bls12381_signature_subgroup_check_internal(

@@ -665,2 +722,16 @@ signature: any,

export function aptos_std_ed25519_generate_keys_internal(
$c: AptosDataCache,
): [U8[], U8[]]{
throw new Error("Not implemented");
}
export function aptos_std_ed25519_sign_internal(
sk: U8[],
msg: U8[],
$c: AptosDataCache,
): U8[] {
throw new Error("Not implemented");
}
export function aptos_std_ed25519_public_key_validate_internal(

@@ -816,2 +887,11 @@ pubkey: U8[],

export function aptos_framework_object_exists_at (
object: HexString,
$c: AptosDataCache,
$p: TypeTag[], /* <T>*/
): boolean {
throw new Error("Not Implemented");
}
export class ActualAggregator {

@@ -818,0 +898,0 @@ static moduleAddress = new HexString("0x1");

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

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