Erik Zhang
Erik Zhang
```c# Transaction current_tx = (Transaction)Runtime.ScriptContainer; ```
Add a `maxExecFee` field for each method in ABI or manifest?
We have to limit the items in the ResultStack in ApplicationLogs.
> Can we at least postpone it after 3.3.0? Sure.
3.3.0 is released. Now we can review this.
I can do it even today. ```c# public void Eval(byte[] script) { ByteString nef = BuildNef(script); string manifest = BuildManifest(script); var contract = ContractManagement.Deploy(nef, manifest); Contract.Call(contract.Hash, "main", CallFlags.All); } ```...
> What prevents this logic to be implemented as a simple contract method? Because I am a user, not the contract owner. My plan is to allow the users to...
Imagine a contract with many users, and each user stores data in the contract. Each user can designate administrators for their data. And allow administrators not to be fixed, but...
> We don't store it explicitly, but this can be done (and there can be an event with it like in current [#2764](https://github.com/neo-project/neo/pull/2764)), it all boils down to an address...
Yes, it works. But deploying a contract is a bit expensive, and usually the logic of getting an address is very simple logic, and it's not worth deploying a contract...