public Task <TransactionReceipt> RegisterGalleasWorldRequestAndWaitForReceiptAsync(string galleasContract, string initiator, byte[] name, CancellationTokenSource cancellationToken = null) { var registerGalleasWorldFunction = new RegisterGalleasWorldFunction(); registerGalleasWorldFunction.GalleasContract = galleasContract; registerGalleasWorldFunction.Initiator = initiator; registerGalleasWorldFunction.Name = name; return(ContractHandler.SendRequestAndWaitForReceiptAsync(registerGalleasWorldFunction, cancellationToken)); }
public Task <string> RegisterGalleasWorldRequestAsync(string galleasContract, string initiator, byte[] name) { var registerGalleasWorldFunction = new RegisterGalleasWorldFunction(); registerGalleasWorldFunction.GalleasContract = galleasContract; registerGalleasWorldFunction.Initiator = initiator; registerGalleasWorldFunction.Name = name; return(ContractHandler.SendRequestAsync(registerGalleasWorldFunction)); }
public Task <TransactionReceipt> RegisterGalleasWorldRequestAndWaitForReceiptAsync(RegisterGalleasWorldFunction registerGalleasWorldFunction, CancellationTokenSource cancellationToken = null) { return(ContractHandler.SendRequestAndWaitForReceiptAsync(registerGalleasWorldFunction, cancellationToken)); }
public Task <string> RegisterGalleasWorldRequestAsync(RegisterGalleasWorldFunction registerGalleasWorldFunction) { return(ContractHandler.SendRequestAsync(registerGalleasWorldFunction)); }