Ryan Lee
Ryan Lee
When a multisig is created, nothing is actually broadcasted onchain to denote that it is created. if you are added to a multisig, you don't know that actually a part...
follow to https://github.com/paritytech/capi/pull/795. Browser example workflows still need to be enabled.
Based on my understanding when specifying a `target` in `nets.ts`, it only swaps out the connection and not the "chain rune".. i.e. `westend` does not become `westendDev`. So whatever extrinsics...
In `VirtualMultisigRune` there is a `senderProxyId` method with the following code snippet ```ts senderProxyId(...[senderAccountId]: RunicArgs) { const senderAccountIdHex = Rune.resolve(senderAccountId).map(hex.encode) const senderProxyI = this.proxies.access(senderAccountIdHex) const senderProxyAccountId = this.inner .into(ValueRune) .access("signatories")...
Loaded up `core-sample-app` in android studio and gradle sync didn't work until i applied these changes.
Getting ``` ./node_modules/react-redux/es/components/connectAdvanced.js Module not found: Can't resolve '@babel/runtime/helpers/esm/assertThisInitialized' in '/home/drd/Documents/Repositories/loopr/node_modules/react-redux/es/components' ``` Tried installing the `react-redux` package but that didn't seem to do anything.
Maybe this shouild be documented somewhere, but `npm install` doesn't work on Node 10 or 11. I've tried testing on Node 8 and that seems to have worked.
### What version of Effect is running? 3.1.2 ### What steps can reproduce the bug? 1. Clone https://github.com/paritytech/substrate-connect/tree/rogue-scheduler 2. corepack pnpm i 3. cd packages/light-client-experimental 4. corepack pnpm turbo build...
Right now polyfire is using only local storage. This is a problem in react native since local storage doesn't exist and would be a problem in a web extension context...
zod validation is sequential right now. Meaning if the headers are invalid it will _fail-first_ and not return any information about other parts of the request that might be invalid....