Changelog
0.8.1â
- Fix an issue where relative imports with two dots would make imported files not to be found #114;
- Add support for
maxTransactionFee
onTokenCreate
. Environment variableHEDERAS_DEFAULT_TOKEN_CREATE_TRANSACTION_FEE
can be used to adjust the fee for allTokenCreateTransaction
's made on a session #126;
0.8.0â
- Supports
@hashgraph/sdk@2.17.1
- Added
LiveContract
support for deep-nested object params (#73) - Added library-linking support (#38)
- File size chunks have been increased from
1024
to4096
- Automating mapping various Hedera Entity Ids (eg.
TokenId
,AccountId
,FileId
, etc.) to solidity addresses (#64) @buidlerlabs/rollup-plugin-hashgraph-venin
has also been bumped and adjusted to support this release- đĨ Bumped
HEDERAS_DEFAULT_PAYMENT_FOR_CONTRACT_QUERY
from1000000
to20000000
to adjust for network price updates
0.7.5â
- Lighten the repo by splitting it into 3: the core one, the docs, aka "this one" and the rollup plugin
- Deleting
LiveEntity
s now invalidates them so that, for consistency, certain operations won't work on them anymore - đĨ Potentially braking change! Returning
bytes
from Solidity now maps to managed (eg.Uint8Array
) data structures package.json
exports are now aligned with@hashgraph/sdk
's- cracked the infamous 'wall-of-text' bug
0.7.4â
- Supports
@hashgraph/sdk@2.11.3
- Support for HIP-338 wallets. See the wallets guides section for more info.
- Added the bundling guide that makes use of a custom defined
@buidlerlabs/hashgraph-venin-js/rollup-plugin
export - Added
LiveEntity.deleteEntity
andLiveEntity.updateEntity
operations todelete
and/orupdate
self-entity - Added
Topic
/LiveTopic
andFile
/LiveFile
pairs - Implemented
LiveAddress.equals(AccountId)
functionality - Implemented
StratoAddress.toLiveAccount()
- Auto arrayfying hex string if
bytes32
arguments are expected by theLiveContract
call - đĨ Potentially braking change! Added
HEDERAS_DEFAULT_CONTRACT_REQUESTS_RETURN_ONLY_RECEIPTS
config option to have finer cost-control over contract-requests. Set it tofalse
to revert to v0.7.3 behavior. This only affects state-mutating contract-calls. Non-mutating (query) calls are not affected by this parameter. - Fixed recursive loading of ABIs into
ContractRegistry
s at bundling time - Allow
ContractRegistry
s to be created from abstract solidity contracts - A lot of tweaks on docs, visual and others
- Added github actions workflows for manual/auto testing
0.7.3â
- Supports
@hashgraph/sdk@2.7.0
- Added support for creating
Token
s - Added support for creating
Account
s - Added more config options with sensible defaults to control behavior and expenses
- Allowed constructors to generate logs
- Started adding a
Controller
mechanism for sessions in preparation to support integration with wallets
0.6.10â
Initial release