Adam Shirt
Adam Shirt
Allows configuration for the features which are used when implicitly registering API controllers. This is necessary when registering a new feature on the full node that includes a controller, but...
Some features seem to be missing from nuget.org. The ones which I've come across are: * Stratis.Bitcoin.Features.SignalR * Stratis.Features.Diagnostic Would be nice to have all the features available as packages.
When calling endpoints to interact with smart contracts, when the transaction cannot be broadcast, the API is returning a 400 Bad Request response. This is misleading as the same response...
I have a scenario where I am passing structs and struct arrays to a smart contract. At the moment, in my contract, I'm deserializing from a byte array inside the...
Byte array return values in smart contracts are not being serialized into the receipt. ```csharp public class ExampleContract : SmartContract { ... public byte[] CallMe() => new byte[] { 3,...
Currently `ulong` values generate `format: int64`, however my understanding is that [int64 describes a signed value](https://swagger.io/specification/#dataTypeFormat). The idea of this change is that the generated type description will no longer...
**Is your feature request related to a problem? Please describe.** When using Azure Key Vault to sign a token, the `kid` value in the header is set with the key...
Generates and includes an `operationId` for each endpoint, based on the method name. The purpose of this is so that it is viable to code generate an API client, with...
> To download the pre-built Docker image from the latest release, run: > ``` > curl -sSfL https://raw.githubusercontent.com/coinbase/rosetta-bitcoin/master/install.sh | sh -s > ``` It appears that the latest release is...
Takes into account indirect inheritance of `SmartContract` when determining the deploy type in a smart contract assembly. This allows contracts to be deployed with an inheritance structure like so: `NonFungibleTicket`...