Vladimir Kalnitsky

Results 48 issues of Vladimir Kalnitsky

``` declare export class TransactionMetadatum { free(): void; /** * @returns {Uint8Array} */ to_bytes(): Uint8Array; /** * @param {Uint8Array} bytes * @returns {TransactionMetadatum} */ static from_bytes(bytes: Uint8Array): TransactionMetadatum; /** *...

[`browser` field in a `package.json`]( https://github.com/defunctzombie/package-browser-field-spec) allows to point the bundler to an alternative source specifically when bundling for the browser. Therefore, CSL could be distributed as a single NPM...

`on*` functions only allow to set one handler per event, which is a significant limitation.

We've been working on introducing Blockfrost support to [`cardano-transaction-lib`](https://github.com/Plutonomicon/cardano-transaction-lib/) as part of our Catalyst Fund9 [project](https://cardano.ideascale.com/c/idea/420791). The goal of the project is to add support for Blockfrost as an alternative...

I noticed that in the config we can only specify one of the known networks. How hard would it be to run Blockfrost on a custom private testnet? We definitely...

help wanted
feature

Allow using any provider instead of [sticking](https://github.com/trufflesuite/truffle-hdwallet-provider/blob/master/index.js#L24) to `Web3.providers.HttpProvider`. The more generality is the better. It can be done without breaking the current interface, i. e. constructor could check if...

### Summary I'm trying to initialize a project using `@cardano-sdk/core` and node fails ### Steps to reproduce the bug 1. Initialize a new npm package with npm & nodejs v18.18.2...

bug

Instead of suggesting the user to copy-paste the command from the terminal, like here: ``` [error] Some of your project files import modules from packages that are not in the...

feature
new flag

Sometimes we don't want to pollute the namespace with prelude and other dependencies, i.e. we want to just search the local package. The Ask: Make it possible to pass a...

As for now, we do something like `fromMaybe defaultCommands getArgs` where `getArgs :: Effect (Maybe Commands)`. The default command is `Search` (i.e. start an interactive CLI session) with some reasonable...

bug
help wanted
low hanging fruit