Victor ADĂSCĂLIȚEI
Victor ADĂSCĂLIȚEI
... this way, the kernel will mimic what Pyhton does with its `print` function which will be a more intuitive way of doing things in Jupyter. We should code for...
Hi all, Thank you for taking the time to review this. I present to you 2 modifications that aided me using Httpzoid in my project: - I've added a synchronized...
- `HederaNetwork` has been moved to `hedera` folder ~- `HederaNetwork.getClient()` has been changed to `HederaNetwork.client` (property)~ - Removed a bunch of config variables from `StratoContext` (see [comment](https://github.com/buidler-labs/hedera-strato-js/issues/76#issuecomment-1278671561)) - Removed `Contract.serialize()`...
`LiveAccountWithPrivateKey` already has a valid `Account` with its associated `PrivateKey` and the `ApiSession` that sourced it (with the bounded network). Might as well allow for a new `ApiSession`s to be...
We have `ApiSession` methods to retrieve `live` instances of type `Contract` and `Json`, but there aren't any to retrieve `LiveAccount`s, `LiveFile`s, `LiveToken`s and `LiveTopic`s. We need to support these as...
Given an existing contract's `bytecode` hosted at a `FileId`, we should allow the deployment of a new `LiveContract` through that `FileId`. This one is near and dear to @victorholo's heart....
- ~use a [file chunk size of `2048`](https://github.com/hashgraph/hedera-sdk-js/blob/v2.11.3/src/file/FileAppendTransaction.js#L68) bytes~ - **Note:** as of October 2022, Strato has been updated to use the newly supported chunk size of `4096` - use...
Calling `greet(1)` from: ``` solidity pragma solidity ^0.8.3; contract HelloWorld { string public greet = "Hello World!"; } ``` fails with a `Expected library addresses to be provided yet none...
Following #73 , we allow passing in deep-nested objects when calling smart contracts. Now it's the turn of returning and parsing the smart contract results: we need to be able...
Currently, we issue a `TransactionRecordQuery` request if we want smart-contract execution logs following a `ContractExecuteTransaction` call. For `ContractCallQuery` there is no such requirement since, by design, the `ContractCallQuery` response (which...