Example #1
0
        public Task <CompilerVersion> GetCompilerVersionAsync(string bytecode, CancellationToken token = default(CancellationToken))
        {
            ByteCodeInput inp = new ByteCodeInput();

            inp.Bytecode = bytecode;
            return(_compilerClient.GetCompilerVersionAsync(inp, token));
        }
Example #2
0
        public Task <FateAssembler> GetFateAssemblerCodeAsync(string bytecode, CancellationToken token = default(CancellationToken))
        {
            ByteCodeInput inp = new ByteCodeInput();

            inp.Bytecode = bytecode;
            return(_compilerClient.GetFateAssemblerCodeAsync(inp, token));
        }