Yash Nelapati
Yash Nelapati
Any idea when the deprecated's `patch_all() `is going to be removed? I had to copy ModelMeta and Model class and later realized that patch_all is adding `_options` and other methods....
It would be awesome if HandlerSocket supports IN query. Most of the time an app fetches data for a list of primary keys. Is handlersocket going to support IN anytime...
### Expected behavior ```package sekai.eldenring.util // Copied from // https://github.com/awsdocs/aws-doc-sdk-examples/blob/main/kotlin/services/ses/src/main/kotlin/com/example/ses/SendMessageEmail.kt import aws.sdk.kotlin.runtime.auth.credentials.EnvironmentCredentialsProvider import aws.sdk.kotlin.services.ses.SesClient import aws.sdk.kotlin.services.ses.model.Body import aws.sdk.kotlin.services.ses.model.Content import aws.sdk.kotlin.services.ses.model.Destination import aws.sdk.kotlin.services.ses.model.Message import aws.sdk.kotlin.services.ses.model.SendEmailRequest val client = SesClient { region...
`ex_abi` library converts function signature back to ABI function selector to decode the output. Since we already have the abi we can call the decode function directly. ```elixir iex(7)> ExW3.Contract.call(:Contract,...
```elixir ExW3.Contract.start_link() ExW3.Contract.register(:Contract, abi: ExW3.Abi.load_abi("path/to/abis/erc721.json")) ExW3.Contract.at(:Contract, "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d") url = Spool.Chain.Helpers.get_endpoint_for_network(1) Application.put_env(:ethereumex, :url, url) ExW3.Contract.call(:Contract, :symbol) ``` ``` [error] GenServer ContractManager terminating ** (MatchError) no match of right hand side value:...
Can we send the SIGUSR1 signal to the pyres_manager and have it dump the current log traceback of workers? ``` kill -USR1 ``` dump the current traceback to -f pyres.log...