@broxus/ever-wallet-wasm
Advanced tools
Comparing version 0.1.27 to 0.1.28
@@ -62,2 +62,15 @@ /* tslint:disable */ | ||
* @param {string} contract_abi | ||
* @param {string} boc | ||
* @param {boolean} allow_partial | ||
* @returns {TokensObject | undefined} | ||
*/ | ||
export function unpackContractFields(contract_abi: string, boc: string, allow_partial: boolean): TokensObject | undefined; | ||
/** | ||
* @param {string} contract_abi | ||
* @param {string} data | ||
* @returns {{ publicKey?: string, data: TokensObject }} | ||
*/ | ||
export function unpackInitData(contract_abi: string, data: string): { publicKey?: string, data: TokensObject }; | ||
/** | ||
* @param {string} contract_abi | ||
* @param {string} method | ||
@@ -147,5 +160,5 @@ * @param {TokensObject} input | ||
* @param {string | undefined} abi_version | ||
* @returns {string} | ||
* @returns {{ hash: string, boc: string, }} | ||
*/ | ||
export function packIntoCell(params: Array<AbiParam>, tokens: TokensObject, abi_version?: string): string; | ||
export function packIntoCell(params: Array<AbiParam>, tokens: TokensObject, abi_version?: string): { hash: string, boc: string, }; | ||
/** | ||
@@ -221,11 +234,11 @@ * @param {Array<AbiParam>} params | ||
* @param {string} code | ||
* @returns {string} | ||
* @returns {{ hash: string, boc: string, }} | ||
*/ | ||
export function codeToTvc(code: string): string; | ||
export function codeToTvc(code: string): { hash: string, boc: string, }; | ||
/** | ||
* @param {string} code | ||
* @param {string} data | ||
* @returns {string} | ||
* @returns {{ hash: string, boc: string, }} | ||
*/ | ||
export function mergeTvc(code: string, data: string): string; | ||
export function mergeTvc(code: string, data: string): { hash: string, boc: string, }; | ||
/** | ||
@@ -239,5 +252,5 @@ * @param {string} tvc | ||
* @param {string} salt | ||
* @returns {string} | ||
* @returns {{ hash: string, boc: string, }} | ||
*/ | ||
export function setCodeSalt(code: string, salt: string): string; | ||
export function setCodeSalt(code: string, salt: string): { hash: string, boc: string, }; | ||
/** | ||
@@ -244,0 +257,0 @@ * @param {string} code |
@@ -7,3 +7,3 @@ { | ||
"description": "Nekoton bindings for WASM", | ||
"version": "0.1.27", | ||
"version": "0.1.28", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -22,3 +22,6 @@ "repository": { | ||
"types": "ever_wallet_wasm.d.ts", | ||
"sideEffects": false | ||
"sideEffects": [ | ||
"./ever_wallet_wasm.js", | ||
"./snippets/*" | ||
] | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5449
3980148