Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FunC v0.5.0 #1

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.idea
.DS_Store
dist
node_modules
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# func-js-bin

This is a package containing WASM module and binary for [func-js](https://github.com/ton-community/func-js), the JS wrapper of func, the compiler of smart contracts for the TON blockchain.
This is a package containing WASM module and binary for [func-js](https://github.com/ton-community/func-js), the JS wrapper of FunC, the compiler of smart contracts for the TON blockchain.

For usage information, please see [func-js](https://github.com/ton-community/func-js).
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ton-community/func-js-bin",
"description": "Distribution of WASM module and binary for func-js",
"version": "0.4.4-newops.1",
"version": "0.5.0",
"main": "dist/index.js",
"author": "TonTech",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/funcfiftlib.js

Large diffs are not rendered by default.

Binary file modified src/funcfiftlib.wasm
100644 → 100755
Binary file not shown.
2 changes: 1 addition & 1 deletion src/funcfiftlib.wasm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type FuncWASMObject = {

export const object: FuncWASMObject = {
schemaVersion: 1,
funcVersion: '0.4.4',
funcVersion: '0.5.0',
module: require('./funcfiftlib.js'),
wasmBase64: require('./funcfiftlib.wasm.js').FuncFiftLibWasm,
};