fleet
fleet copied to clipboard
🦾 Simple, powerful, and extensible Ergo Blockchain SDK
Provide client for node running with the extra indexes. It implements the blockchain-providers standard interface and several node REST API end points. Returns the blockchain objects typed for fleet SDK...
From release [CI output](https://github.com/fleet-sdk/fleet/actions/runs/6844794373/job/18609102550#step:7:284): > error an error occurred while publishing fleet-sdk: E403 403 Forbidden - PUT https://registry.npmjs.org/fleet-sdk - Package name too similar to existing package fleet_sdk; try renaming your...
# Planned Implementations - [x] #18 - [ ] Indexed node package # Interface All packages must implement and extend the following interface and throw a `NotSupportedError` for not supported...
TypeScript [Enums are bad](https://dev.to/ylerjen/use-typescript-const-assertion-instead-of-enums-mfn), consider replacing them by plain objects for improved compatibility and efficiency. Plain object enum example: ```ts export const ergoTreeHeaderFlags = { sizeInclusion: 0x08, constantSegregation: 0x10 }...