/// <summary>Publish a signed attestation.</summary> /// <param name="attestation">An `IndexedAttestation` structure, as originally provided by the beacon node, but now with the signature field completed.</param> /// <returns>The attestation was validated successfully and has been broadcast. It has also been integrated into the beacon node's database.</returns> public Task Attestation2Async(IndexedAttestation attestation) { throw new NotImplementedException(); }
public System.Threading.Tasks.Task Attestation2([Microsoft.AspNetCore.Mvc.FromQuery] IndexedAttestation attestation) { return(_implementation.Attestation2Async(attestation)); }