The following C# code is generated:
public Task<bool> StoreDocumentAsyncCall(byte[] key, string name, string description) {
var function = GetFunctionStoreDocument();
return function.CallAsync<bool>(key, name, description);
}
And it would be better if also this code was generated:
public Task<bool> StoreDocumentAsyncCall(string addressFrom, byte[] key, string name, string description, HexBigInteger gas = null, HexBigInteger valueAmount = null) {
var function = GetFunctionStoreDocument();
return function.CallAsync<bool>(addressFrom, gas, valueAmount, key, name, description);
}