Mike Cohen
Mike Cohen
## Describe the bug Trying to sync a full API node on testnet. Port 3999 does not accept requests and stacks tip height does not progress. Note: I'm also syncing...
Versions: "micro-stacks": "^1.1.1", "@micro-stacks/svelte": "^1.0.3", Configure the network to be 'testnet' with the hiro web wallet connected to mainnet. ``` const config = { appName: 'Ecosystem DAO', appIconUrl: origin +...
Regardless of how I set the network in my svelte application the web wallet ignores the fact that I should be connected to devnet / localhost. Versions: ``` "@micro-stacks/svelte": "^1.0.3",...
**Describe the bug** Explorer expects the NFT index to be a simple UINT. With progress on SIP-013 for semi fungible tokens we should expect to see more general tuple asset-identifier-types...
**What's your name/your team's name?** Clarity Lab **Best email on which to contact you?** [email protected] **Personal Statement** The work I’ve been conducting over the past two years makes me an...
There is currently no single reference for traits defined by the Stacks Improvement Process. A document maintained in this repo which lists recommended trait contracts already deployed will be helpful...
A suggestion for two traits that can be implemented by SIP-009 and SIP-010 contracts going forward which will make them more safely interoperable with Marketplace contracts.
Signing [PSBTs in web wallet](https://github.com/hirosystems/wallet/pull/3321) is now possible and support for this is coming in stacks.js. Is support in micro-stacks for this feature also in the pipeline ?
Using: "micro-stacks": "^1.1.4", "@noble/secp256k1": "^1.7.1" Comparing `getPublicKeyFromSignature from "micro-stacks/connect"` to `recoverPublicKey from '@noble/secp256k1'` The latter allows the flag compressed=true to be passed whereas the former hard codes it to false....
Hey there, wondering why these two methods yield different bech32m addresses? ``` const script = btc.p2tr(xOnlyPubKey, undefined, net) const addr = btc.Address(net).encode({type: 'tr', pubkey: xOnlyPubKey}) expect(script.address).equals(addr) ``` this test fails...