Skip to content

Commit

Permalink
Merge pull request #294 from massalabs/export_solidity_compact
Browse files Browse the repository at this point in the history
export solidity_compact functions and objects
  • Loading branch information
Ben-Rey authored Aug 25, 2023
2 parents 712a4d7 + e9332bc commit 98f064f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
12 changes: 11 additions & 1 deletion assembly/std/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,18 @@ import * as OpDatastore from './op-datastore';
import * as Contract from './contract';
import * as Utilities from './utils';
import * as Coins from './coins';
import * as SolidityCompat from './solidity_compat';

export { Address, Storage, Context, OpDatastore, Contract, Utilities, Coins };
export {
Address,
Storage,
Context,
OpDatastore,
Contract,
Utilities,
Coins,
SolidityCompat,
};

// op-datastore/index.ts
/**
Expand Down
3 changes: 3 additions & 0 deletions assembly/std/solidity_compat/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './bytes';
export * from './encode';
export * from './misc';
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@massalabs/massa-as-sdk",
"version": "2.5.0",
"version": "2.5.1",
"description": "Massa assemblyscript sdk",
"main": "assembly/index.ts",
"types": "assembly/index.ts",
Expand Down

0 comments on commit 98f064f

Please sign in to comment.