Johannes Kares
Johannes Kares
@kebian same problem here using Typescript
Hi @adamstark, great library! Just wanted to check this old thread if you are still considering changing to MIT? It's not possible to use this library in any closed-source application...
I've found a workaround by setting the `outputPath` in `config.json` like so: ``` export default defineConfig({ outputPath: 'packages/eth-sdk', contracts: { rinkeby: { myContract: '0x779326b435dD48993B60b7D52CF99B6c2430B483', }, }, }) ``` Now I...
https://github.com/dethcrypto/eth-sdk/pull/103
I'm doing this temporary hack until it gets solved from `supabase-js`. Any update on when this will be done automatically? ```javascript const { data, error } = await supabase.from("items") .select(`*,...
The recent release from this PR https://github.com/supabase/postgrest-js/pull/345 broke my workaround, mentioned above. ``` Additionally, instead of always returning unknown for all nested relations, we instead return T | T[] ```...
I did some digging on my own and I think I found the line that produces the error: [!bn(info.price).div(info.amount).mul(info.amount).eq(info.price)](https://github.com/reservoirprotocol/indexer/blob/0a1bff2bdff780300738938ed3a445ddfd2b9150/packages/sdk/src/seaport-v1.5/order.ts#L190) Not sure why this is in there. Is this a limitation...
For anyone running into the same problem: My pretty crazy workaround right now: For listings I do: ```typescript function findAdjustedUsdcPrice(usdPrice: bigint, quantity: bigint) { let adjustedPrice: bigint; for (adjustedPrice =...
For anyone looking for a solution, here is a small modification to the component that works for me. ```typescript date > new Date() || date < new Date("1900-01-01")} captionLayout="dropdown" toYear={2010}...
fantastic, good to know ``` sql`json_array_length(cast (${table.projects} as json)) > 0`, ``` did the trick