Özgür Akkurt

Results 32 comments of Özgür Akkurt

@TiagoX9 can you try something like this: ```js class Loader { async load() { if (this._wasm) return; /** * @private */ this._wasm = await import("@emurgo/cardano-serialization-lib-browser/"); } get Cardano() { return...

Hi, can you try [this fix](https://github.com/rust-lang/cargo/issues/2078#issuecomment-434388584)? I can't test it since I don't have android env setup

@rooooooooob I am currently thinking of it like we make a core rust library which has all the functionality in idiomatic rust. Then we write a thin wasm wrapper around...

Hi, You can get it using the cardano cli like this: `cardano-cli address build --payment-script-file swap-testnet.plutus --testnet-magic 1097911063 --out-file swap-testnet.addr`

@vsubhuman Is there a way to get the address using serlib?

I though it is supported because of the discussion here: https://github.com/pola-rs/polars/issues/4877

would it make sense to add support for binary arrow type all around? It is more efficient to store in parquet files than just encoding binary data and putting into...

@ritchie46 How hard would it be to implement opening files from s3? I would like to try implementing this if you can give me info about how to do it....

Maybe something like this would make sense to use here? https://github.com/Noeda/mmapurl

How would I do something like `binary_col.is_in(list_of_binary_literals)` ? I can create a single binary literal like this: `binary_vec.iter().collect::().lit()` but not sure how to create a List literal Also maybe `Literal`...