@manahippo/move-to-ts
Advanced tools
Comparing version 0.3.3 to 0.3.4
@@ -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 { |
@@ -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
538794
8910
+ Addedaptos@1.3.14(transitive)
- Removedaptos@1.3.13(transitive)
- Removedjs-sha3@0.8.0(transitive)
Updatedaptos@1.3.14