Daniel Porteous (dport)

Results 226 issues of Daniel Porteous (dport)

### Is your feature request related to a problem? Please describe. When the MCP opens the browser it provides arguments I don't want like --disable-extensions. I'd like to be able...

enhancement
confirmed

When you create a network: ```ts const SHELBY_LOCALNET_NETWORK = "shelby-localnet"; const labels = ["shelby"]; const compose = { ... networks: { [SHELBY_LOCALNET_NETWORK]: { name: SHELBY_LOCALNET_NETWORK, driver: "bridge", labels, } };...

Imagine some middleware like this: ``` let block_viewer_mutations = |mw: MiddlewareBuilder| { mw.middleware( |mw: MiddlewareContext| async move { if let Some(org_ctx) = &mw.ctx.organization_context { if org_ctx.organization_role == OrganizationRole::Viewer && matches!(mw.req.kind,...

Hey hey, I'm wondering if there is a recommended way to call an RSPC API from Rust? As far as I can tell there is no way to generate a...

### Description Hides the `account_address`, `creation_number`, and `sequence_number` fields in the Events tab for module events (events v2). These fields are zero-valued for backwards compatibility but are not meaningful for...

Right now strings and perhaps other types are generated using `&'a str`: ```rust #[derive(Insertable)] #[diesel(table_name = blob)] pub struct NewBlob