• 01 November 2023 (101 messages)
  • @B0BSmith #8298 03:03 PM, 01 Nov 2023
    so I don't sign the second tx but transplant the signature from the first ?
  • @hodlencoinfield #8299 03:04 PM, 01 Nov 2023
    the api should sign the 2nd i believe
  • @hodlencoinfield #8300 03:04 PM, 01 Nov 2023
    or i should say, create a valid signature with the message data
  • @B0BSmith #8301 03:05 PM, 01 Nov 2023
    the api gives me unsigned hex for the second tx .. well coinb.in reports the hex is unsigned
  • @hodlencoinfield #8302 03:06 PM, 01 Nov 2023
    i’ll take a look, been meaning to start looking into adding multisend to rpw
  • @B0BSmith #8303 03:07 PM, 01 Nov 2023
    ok ty.. mempool.space reports mandatory script flag failed operation not valid with the current stack size .. so the api generated 2nd tx hex is missing a something
  • @hodlencoinfield #8304 03:09 PM, 01 Nov 2023
    yes... have to sign/broadcast the first p2sh tx before you can generate the second tx.... need the tx_hash from first tx for`p2sh_pretx_txid` param in the second tx
  • @hodlencoinfield #8305 03:09 PM, 01 Nov 2023
    second p2sh call is EXACTLY the same as first except I give p2sh_pretx_txid
  • @B0BSmith #8306 03:11 PM, 01 Nov 2023
    yeah I did that ... and the second tx needs a signature on the p2sh address that is the output in the first tx and becomes the input we then spend in the second tx
  • @hodlencoinfield #8307 03:12 PM, 01 Nov 2023
    weird i would think that would generate the signed tx since there’s no change output
  • @B0BSmith #8308 03:12 PM, 01 Nov 2023
    I have a 546 satoshi outtput in a address starting with a 3 that goes to miner fee for the opreturn but I can't broadcast a unsigned tx
  • @hodlencoinfield #8309 03:13 PM, 01 Nov 2023
    well you’re spending all the p2sh outputs from the first tx, oh maybe it does have a change output
  • @B0BSmith #8310 03:14 PM, 01 Nov 2023
    no change output
  • @B0BSmith #8311 03:14 PM, 01 Nov 2023
    it's just the one p2sh input and one op return output
  • @hodlencoinfield #8312 03:14 PM, 01 Nov 2023
    your 1st tx had just a single p2sh output?
  • @B0BSmith #8313 03:15 PM, 01 Nov 2023
    yeah was a multisend of 1 card to 7 addresses
  • @hodlencoinfield #8314 03:15 PM, 01 Nov 2023
    ok then the api should be creating that signature, maybe there is another flag
  • @hodlencoinfield #8315 03:16 PM, 01 Nov 2023
    all that signature is is the hash of the script that contains the message data
  • @B0BSmith #8316 03:16 PM, 01 Nov 2023
    1st tx has 2 outputs the p2sh encoded data and change

    second tx has no change
  • @hodlencoinfield #8317 03:16 PM, 01 Nov 2023
    yes
  • @hodlencoinfield #8318 03:16 PM, 01 Nov 2023
    thats how it should be
  • @B0BSmith #8319 03:17 PM, 01 Nov 2023
    hmm api not creating signed tx hex for the second part
  • @B0BSmith #8320 03:19 PM, 01 Nov 2023
    trying to sign second tx hex with the private key of the source address from 1st tx does nothing
  • @hodlencoinfield #8321 03:19 PM, 01 Nov 2023
    it wouldnt
  • @hodlencoinfield #8322 03:20 PM, 01 Nov 2023
    that 2nd tx doesnt have any inputs that need to be signed from the address that created the 1st tx
  • @B0BSmith #8323 03:20 PM, 01 Nov 2023
    I need the key to the address starting with 3 that contains the dust to be spent
  • @hodlencoinfield #8324 03:20 PM, 01 Nov 2023
    no
  • @hodlencoinfield #8325 03:20 PM, 01 Nov 2023
    it is a p2sh
  • @hodlencoinfield #8326 03:20 PM, 01 Nov 2023
    you need the script that hashes to the value that makes it true
  • @B0BSmith #8327 03:20 PM, 01 Nov 2023
    ahh
  • @hodlencoinfield #8328 03:20 PM, 01 Nov 2023
    which is your message data
  • @hodlencoinfield #8329 03:21 PM, 01 Nov 2023
    which is why the API should create it, i think maybe there is just a flag you’re missing in the api call
  • @B0BSmith #8330 03:21 PM, 01 Nov 2023
    that makes sense
  • @B0BSmith #8331 03:22 PM, 01 Nov 2023
    as yeah I am feeding the api the txid of 1st part of the 2 step process but not getting back signed stuff
  • @hodlencoinfield #8334 03:35 PM, 01 Nov 2023
    did you broadcast the 1st tx yet?
  • @hodlencoinfield #8335 03:36 PM, 01 Nov 2023
    if not i think you should be able to create your own utxos to feed to the 2nd tx using the custom_inputs parameter
  • @hodlencoinfield #8336 03:37 PM, 01 Nov 2023
    you probly also need to set allow_unconfirmed_inputs to true
  • @hodlencoinfield #8337 03:37 PM, 01 Nov 2023
    not sure if that’ll throw an error if the utxos you’re using arent in mempool
  • @B0BSmith #8338 03:38 PM, 01 Nov 2023
    I did broadcast first tx
  • @B0BSmith #8339 03:38 PM, 01 Nov 2023
    I got confirms too .. but yes unconfirmed inputs is helpful whe not wanting to wait for 1st to confirm
  • @hodlencoinfield #8340 03:40 PM, 01 Nov 2023
    hmm
  • @hodlencoinfield #8341 03:42 PM, 01 Nov 2023
    im looking at freewallet repo now
  • @B0BSmith #8342 03:43 PM, 01 Nov 2023
    when I use "extended tx info" the second tx shows 'btc in' as 0 but 'btc out' is 546 ..change is null and btc fee is 0 ... which adds up .. the 546 from the script becomes the miner fee .. and there is no change
  • @B0BSmith #8343 03:45 PM, 01 Nov 2023
    If I don't have 'encoding' p2sh the api generates a bunch of multisig outputs even tho I specify the p2sh prextx txid .. so I am confident the p2sh encoding is required for the second tx
  • @hodlencoinfield #8344 03:46 PM, 01 Nov 2023
    i found it
  • @hodlencoinfield #8345 03:46 PM, 01 Nov 2023
    one sec
  • @hodlencoinfield #8346 03:48 PM, 01 Nov 2023
    looks like you do need to sign
  • @jdogresorg #8347 03:49 PM, 01 Nov 2023
    The API always generates unsigned transactions… there is no way for it to ever generate a signed transaction since there is no way you can provide a private key to the counterparty API
  • @hodlencoinfield #8348 03:49 PM, 01 Nov 2023
    yes i think i just wasnt fully understanding p2sh encoding
  • @hodlencoinfield #8349 03:49 PM, 01 Nov 2023
    apparently there is a signature check
  • @jdogresorg #8350 03:50 PM, 01 Nov 2023
    The second TX in a MPMA transaction just references the first transaction, and the second transaction gets all of the data from the outputs of the first transaction as the inputs of the second transaction
  • @hodlencoinfield #8351 03:51 PM, 01 Nov 2023
    it actually recreates the data, because the outputs in the first tx are just hashes essentially
  • @B0BSmith #8352 03:52 PM, 01 Nov 2023
    so how to derive the private key to sign with ?
  • @hodlencoinfield #8354 03:52 PM, 01 Nov 2023
    that has the info you need if you’re using bitcoinjs-lib
  • @B0BSmith #8355 03:55 PM, 01 Nov 2023
    ty that helps .. i will see if I can get it working from there

    it seems to take the private key from the source address and then augments it using CWPrivateKey

    privKey= getPrivateKey(net, source),

    cwKey= new CWPrivateKey(privKey),
    keyPair = bitcoinjs.ECPair.fromWIF(cwKey.getWIF(), network),
  • @hodlencoinfield #8356 03:57 PM, 01 Nov 2023
    its just a util function, you should be able to use the WIF you generate using bitcoinjs-lib
  • @B0BSmith #8357 04:10 PM, 01 Nov 2023
    so is it kinda using the private key from the source address that was declared when creating the multisend ?

    I have that private key in WIF format that I derived from users seed using bitcore and mnemonic-1.1.0.js .. will try passing that into a sign function see I can get the second tx broadcast
  • @jdogresorg #8358 04:17 PM, 01 Nov 2023
    yes.... same private key that signs the first tx signs the second tx
  • yeah i just misunderstood how the p2sh encoding works in that there is a signature from the original address
  • @hodlencoinfield #8360 04:18 PM, 01 Nov 2023
    along with the message data that altogether forms the script
  • @B0BSmith #8361 04:19 PM, 01 Nov 2023
    all makes sense
  • @hodlencoinfield #8362 04:21 PM, 01 Nov 2023
    i do wonder if you can use the custom_inputs and allow_unconfirmed_inputs to create the 2nd tx without broadcasting the first
  • @B0BSmith #8363 04:35 PM, 01 Nov 2023
    yay that worked .. thank you both
  • @B0BSmith #8364 04:36 PM, 01 Nov 2023
    I have broadcast a signed second part tx .. just got to wait for my 1.3 sat byte tx to confirm
  • @B0BSmith ↶ Reply to #8362 #8365 04:41 PM, 01 Nov 2023
    I was trying to add custom input to the second tx to try n force a change output so a multisend could be cpfpd but the cp api just ignores custom inputs when creating 2nd part tx
  • @hodlencoinfield #8366 04:48 PM, 01 Nov 2023
    ahhh ok, good to know
  • @AryanJab #8367 09:23 PM, 01 Nov 2023
    To the counterparty API, I'm sending the following JSON:

    {
    "method": "create_send",
    "params": {
    "asset": "BANANABUX",
    "destination":"1AYBbN1yxxtydjMnLyBgi8WxXWudjmi929",
    "quantity": 1,
    "source": "1PnyaGpLEbXbvpHSNLHepm31vQQXFvoSAC"
    },
    "jsonrpc": "2.0",
    "id": 0
    }

    I get a message: "Error composing send transaction via API: Insufficient BTC at address 1PnyaGpLEbXbvpHSNLHepm31vQQXFvoSAC. (Need approximately 0.00025 BTC.) To spend unconfirmed coins, use the flag --unconfirmed. (Unconfirmed coins cannot be spent from multi‐sig addresses.)"

    that is 100% untrue. I've got 0.00043825 BTC in there.

    Any ideas?
  • @davesta ↶ Reply to #8367 #8368 09:25 PM, 01 Nov 2023
    for Freewallet i usually send users to this FAQ:

    https://gist.github.com/davestaxcp/1e2cc086a13c9a2d045876852b57e5be#failure-to-send-not-enough-btc-in-wallet
    Freewallet FAQ 2023 v0.9.23 - Write Up - Draft #5

    Freewallet FAQ 2023 v0.9.23 - Write Up - Draft #5. GitHub Gist: instantly share code, notes, and snippets.

  • @davesta #8369 09:25 PM, 01 Nov 2023
    MOST likely its because you have too many UTXO's on your addy
  • @davesta #8370 09:25 PM, 01 Nov 2023
    gotta consolidate them by sending all the BTC you have back to yourself
  • @davesta #8371 09:25 PM, 01 Nov 2023
    turns your bag of coins into one single bill
  • @AryanJab #8372 09:26 PM, 01 Nov 2023
    Thank you, ser. That isn't the case though. One UTXO. Mostly fresh addy.
  • @davesta ↶ Reply to #8371 #8373 09:26 PM, 01 Nov 2023
    theoretically speaking
  • @davesta ↶ Reply to #8372 #8374 09:26 PM, 01 Nov 2023
    HUH
  • @AryanJab #8376 09:26 PM, 01 Nov 2023
    Fresh af.
  • @davesta #8377 09:26 PM, 01 Nov 2023
    well thats all i can give with my expertise... would love to know the answer when you find it
  • @AryanJab #8378 09:27 PM, 01 Nov 2023
    I wonder if the Counterparty API considers a UTXO confirmed if > X confirmations or something (where X >1)
  • @davesta #8379 09:27 PM, 01 Nov 2023
    sometimes just a restart of Freewallet or your computer helps
  • @davesta #8380 09:27 PM, 01 Nov 2023
    or using a VPN
  • @AryanJab ↶ Reply to #8379 #8381 09:27 PM, 01 Nov 2023
    FWIW, not a Freewallet thing. Is an API call thing.
  • @davesta ↶ Reply to #8381 #8382 09:28 PM, 01 Nov 2023
    interesting
  • @AryanJab #8383 09:28 PM, 01 Nov 2023
    (which in turn calls the API, I guses)
  • @jdogresorg ↶ Reply to #8367 #8384 09:35 PM, 01 Nov 2023
    probably because the change is smaller than dust... so CP throws error instead of just using the extra sats towards the miners... should be fixed in the next release
  • @jdogresorg #8385 09:35 PM, 01 Nov 2023
    Send change smaller than DUST to miners fee instead of error by pataegrillo · Pull Request #1228 · CounterpartyXCP/counterparty-lib

    This fix adds a new parameter dust_size to the backend utxo sort function in order to change it from DEFAULT_MULTISIG_DUST_SIZE to DEFAULT_REGULAR_DUST_SIZE depending if the tx uses a "multisi...

  • @AryanJab ↶ Reply to #8384 #8386 09:38 PM, 01 Nov 2023
    Ahhh, the change UTXO going back to the addy?

    I don't think it'd be true for the resultant tx but can't prove it.

    FWIW, I've got ~42K sats in one UTXO in the source addy. Assuming about ~7K sats in fees, the change would be 35K or so...
  • @davesta ↶ Reply to #8384 #8387 09:41 PM, 01 Nov 2023
    big
  • @jdogresorg #8388 09:41 PM, 01 Nov 2023
    yeah, way more than dust... so maybe throwing the error for some other reason
  • @AryanJab #8391 09:43 PM, 01 Nov 2023
    Is there a diff between the first and second requests that I'm missing?
  • @jdogresorg #8392 09:43 PM, 01 Nov 2023
    CP API returning tx sometimes and other times that balance error... short-answer, try it a few times and it'll go through... long-answer, we still got some issues with CP API and balances sometimes it seems.. prolly addrindexrs choking and returning a bad response... wil need to dig into it 🙂
  • @AryanJab #8393 09:43 PM, 01 Nov 2023
    Cool.
  • @jdogresorg ↶ Reply to #8391 #8394 09:43 PM, 01 Nov 2023
    no difference at all... same exact request, same exact API
  • @AryanJab ↶ Reply to #8394 #8395 09:43 PM, 01 Nov 2023
    Heh. Effing code, amirite?
  • @jdogresorg #8396 09:44 PM, 01 Nov 2023
  • it would be cool to have an assume_valid_utxos parameter, then we could use custom utxos and avoid even hitting addrindexrs or bitcoind
  • @hodlencoinfield #8398 09:59 PM, 01 Nov 2023
    just check to see if the custom_utxos is formatted properly and skip all the other checks
  • 02 November 2023 (48 messages)
  • @rarepepetrader #8400 12:06 AM, 02 Nov 2023
    This is a periodic warning to be on the lookout for scammers and fake accounts impersonating known OG's.

    A reminder to everyone to be on their guard.

    Active scammers in the community have now captured well over $200,000 USD worth of assets from multiple community members across the past year or so.

    If someone comes into your DMs looking to do any OTC deals, and you're not 100% sure you are dealing with a trusted counterparty, please please please verify their bona fides with one of the key group Admins / OGs.

    As always, I'm available to provide escrow services on all high value deals.

    $250 USD up to $50K value exchanged, then 0.5% of total deal value above that.
  • @sn_noop2 ↶ Reply to #8367 #8401 01:41 AM, 02 Nov 2023
    Try adding the fee field at 1 sat.

    I often have this issue and fix it by manually substracting the fee after using a tx editor.

    CP automatic fees look random to me.

    If you don't have a tx editor, maybe try with 3000, should pass ok for a simple send.

    Also you should consider start using segwit (bc1xx), most tx are 40-100% more expensive in legacy (1xxx).
  • @AryanJab ↶ Reply to #8401 #8402 01:52 AM, 02 Nov 2023
    Yep, yep. I fucked up and painted myself into a corner with legacy for now. Will upgrade next go round.
  • @Snowkidind #8403 05:15 AM, 02 Nov 2023
    Joined.
  • @Pitoopi #8406 06:54 AM, 02 Nov 2023
    Joined.
  • @DefinitelyN0tMe #8407 08:30 AM, 02 Nov 2023
    Joined.
  • @B0BSmith ↶ Reply to #8367 #8408 09:00 AM, 02 Nov 2023
    I notice your not specifying a fee either as a amount of sats or as fee per kb, so your leaving it to the cp api to decide, what happens if you explicitly state a fee ? either as a number of sats ? or as fee per kb
  • @AryanJab ↶ Reply to #8408 #8409 11:57 AM, 02 Nov 2023
    I tried with fee and got the same (failed) result. I did not try with fee per kb.
  • @sn_noop2 #8410 12:02 PM, 02 Nov 2023
    Even with fee: 1 ?
  • @AryanJab ↶ Reply to #8410 #8411 12:13 PM, 02 Nov 2023
    I tried something like 1200. I didn't try 1.
  • @B0BSmith ↶ Reply to #8366 #8412 02:53 PM, 02 Nov 2023
    I just found that you can do a multisend using the api not using p2sh encoding, Counterparty then falls back to multisig encoding, so it's done as a single transaction. You can then spend the utxos created back to yourself 👍

    this method also makes it possible to perform cpfp on your multisend
  • @jdogresorg #8413 02:57 PM, 02 Nov 2023
    does the MPMA parse fine without it being the 2 tx p2sh encoding?
  • @jdogresorg #8414 02:58 PM, 02 Nov 2023
    i've only ever done it with p2sh encoding (as instructed by john)... never even tried forcing a different encoding method... is that all your doing? changing encoding from p2sh to multisig?
  • @B0BSmith #8415 02:58 PM, 02 Nov 2023
    but how do you control the size of the output in step1 tx for p2sh, my multisend only creates a dust amount 546 satoshis .. which then results in a 1 sat byte part 2 .. I want more satoshis to use as fees in step 2
  • @B0BSmith ↶ Reply to #8413 #8416 02:59 PM, 02 Nov 2023
    I don't know will broadcast a tx to try it
  • @sn_noop2 #8417 02:59 PM, 02 Nov 2023
    Afaik with mpma, CP only checks out second tx. First one doesn't have to be confirmed
  • @sn_noop2 #8418 03:00 PM, 02 Nov 2023
    The one with your addy as input could even be cancelled after the second is confirmed
  • @B0BSmith ↶ Reply to #8414 #8419 03:00 PM, 02 Nov 2023
    I was trying to change the 'dust' output size in the step 1 of 2 p2sh method and I omitted the p2sh flag in the api and was returned a multisig encoded hex
  • @jdogresorg #8420 03:00 PM, 02 Nov 2023
    p2sh and 2 txs is def going to be cheaper than multisig... but, curious if a single MPMA send using multisig works... pls report... my gut says CP will just ignore the tx... but would be good to confirm 🙂
  • @sn_noop2 #8421 03:01 PM, 02 Nov 2023
    And multisig is default on multisend
  • @B0BSmith #8422 03:01 PM, 02 Nov 2023
    I happy to use the p2sh method but want to create 3addresses with more than 546 satoshi for encoding
  • @B0BSmith #8423 03:02 PM, 02 Nov 2023
    so that when consumed in step 2 I can have more than 1 sat byte
  • @jdogresorg ↶ Reply to #8418 #8424 03:02 PM, 02 Nov 2023
    eh.... second tx uses the outputs from the first tx as the inputs for the second tx....so dont see a scenario where tx 2 confirms but tx 1 doesnt.... since tx2 depends on outputs from tx1.... if tx1 is never mined, those outputs never exist, so tx2 cant exist
  • @jdogresorg #8425 03:03 PM, 02 Nov 2023
    could be wrong... has happened a few times before... but, pretty sure MPMA p2sh always has to be 2 txs and both have to confirm
  • @jdogresorg ↶ Reply to #8422 #8426 03:03 PM, 02 Nov 2023
    specifying multisig_dust_size should allow you to tweak the dust amount in the putputs
  • @sn_noop2 ↶ Reply to #8420 #8427 03:03 PM, 02 Nov 2023
    If you can't measure the fees youhave to put on tx 2, won't be that cheaper if you can't guess the fees you have to put.
    Maybe I haven't digged enough to understand it
  • @sn_noop2 ↶ Reply to #8424 #8428 03:04 PM, 02 Nov 2023
    Don't know how but I'm sure to have seen this.
  • @B0BSmith ↶ Reply to #8426 #8429 03:07 PM, 02 Nov 2023
    nope ..my 3address output in step is is still just 546. I am sending 1 card to seven addresses so it is a small payload but I really do need to be able to control the dust so can control the amount of sats used as fees in step2
  • @sn_noop2 #8430 03:07 PM, 02 Nov 2023
    As tx1 can be bigger than tx2, and they don't look to be linked with cpfp (even if using output1 in input2).

    In that case tx2 is more likely to be confirmed first. And there, I've checked CP API before tx1 confirmed, and saw assets sent as they should.
  • @jdogresorg #8431 03:08 PM, 02 Nov 2023
    please demonstrate this behavior.... fail to see how tx2 can even be generated without tx1 existing.... maybe your finding something new taht CP does... but in my experience, I have not see the behaviour your talking of.... and fail to even understand how that would work.... a tx which references another tx which is not mined... look forward to more tech details once you figure them out 🙂
  • @jdogresorg #8432 03:09 PM, 02 Nov 2023
    we'll (probably) be switching to taproot encoding for MPMA soon (cheaper than p2sh)... so could be a moot point in the near future... but still will be good to know/confirm 🙂
  • @jdogresorg ↶ Reply to #8429 #8433 03:11 PM, 02 Nov 2023
    Hrm.... so multisig_dust_size is being ignored and the default (546) sats is being forced instead?..... good to know.... if you could be so kind as to create a github. issue for this, we can get this fixed in an upcoming release.... you should be able to control the dust amount in those outputs with that param
  • @B0BSmith #8434 03:11 PM, 02 Nov 2023
    I have also tried "regular_dust_size" but my p2sh output is still just 546 satoshi
  • @sn_noop2 #8435 03:12 PM, 02 Nov 2023
    Wasn't a tx I own so will be complicated to find it back. But definitely will spend time some day to find them back, confirmations are written forever
  • @jdogresorg ↶ Reply to #8434 #8437 03:12 PM, 02 Nov 2023
    yeah.... we prolly have it hardcoded in the code... need to fix that
  • @B0BSmith ↶ Reply to #8433 #8438 03:12 PM, 02 Nov 2023
    do we need a p2sh_dust_size param?
  • @B0BSmith #8439 03:12 PM, 02 Nov 2023
    I will open a issue
  • @jdogresorg #8440 03:13 PM, 02 Nov 2023
    IMO coming up with a general dust_size param is better than a custom param for each encoding type {regular,multisig,p2sh,taproot}_dust_size
  • @jdogresorg #8441 03:13 PM, 02 Nov 2023
    should prolly normalize that across all API requests... not make it encoding type specific 🙂
  • @B0BSmith #8442 03:24 PM, 02 Nov 2023
    multisig encoding dust is a little different to normal dust, its harder to spend 😂. Is dust still used when transferring asset ownerships? or did enhanced send remove all that dust that used to be sent ?
  • @B0BSmith #8443 03:26 PM, 02 Nov 2023
    a transfer is an issuance not a send and it's been a while .. it used to create 5460 dust outputs
  • @jdogresorg #8444 03:26 PM, 02 Nov 2023
    yes, we still use dust and the first output for issuance transfers
  • @jdogresorg #8446 03:27 PM, 02 Nov 2023
    Blockstream Block Explorer

    Blockstream Explorer is an open source block explorer providing detailed blockchain data across Bitcoin, Testnet, and Liquid. Supports Tor and tracking-free.

  • @jdogresorg #8447 03:27 PM, 02 Nov 2023
    first output is the transfer_destination address and 546 dust
  • @B0BSmith #8448 03:35 PM, 02 Nov 2023
    ahh .. is it dust output size that is used to send btc along with an asset in classic send?
  • @jdogresorg #8449 03:57 PM, 02 Nov 2023
    I believe that’s the trick👍🏻
  • @B0BSmith #8450 06:09 PM, 02 Nov 2023
    Good to know ty
  • 03 November 2023 (2 messages)
  • @MarkLive #8451 09:38 PM, 03 Nov 2023
    Joined.
  • @sn_noop2 #8452 09:41 PM, 03 Nov 2023
    Hey, anyone knows why CP doesn't look to want to create a tx using 546sats utxo?
  • 04 November 2023 (1 messages)
  • @B0BSmith #8453 09:40 AM, 04 Nov 2023
    I made a tx that created a 546 sat utxo and then another tx that spends only the 546 sat utxo .. which means I got a long wait in mempool for my 1.3 sat byte tx to confirm as I can't cpfp
  • 05 November 2023 (1 messages)
  • @6784167124 #8454 12:52 PM, 05 Nov 2023
    Joined.
  • 06 November 2023 (1 messages)
  • @rarepepetrader #8455 02:03 AM, 06 Nov 2023
  • 07 November 2023 (15 messages)
  • @6517313784 #8457 08:23 PM, 07 Nov 2023
    whats going with taproot addresses ?
  • @6517313784 #8458 08:27 PM, 07 Nov 2023
    taproot or segwit which is better?
  • @davesta ↶ Reply to #8457 #8459 08:36 PM, 07 Nov 2023
    in development for use with XCP
  • @6517313784 #8460 08:37 PM, 07 Nov 2023
    whats the problem with using the original bitcoin segwit?
  • @6517313784 #8461 08:37 PM, 07 Nov 2023
    i can't figure out what taproot is helping with
  • @davesta #8462 08:39 PM, 07 Nov 2023
    cips/cip-0030.md at master · CounterpartyXCP/cips

    Counterparty Improvement Proposals. Contribute to CounterpartyXCP/cips development by creating an account on GitHub.

  • @davesta #8463 08:39 PM, 07 Nov 2023
    What Is Taproot and How Does It Benefit Bitcoin? | River Learn - Bitcoin Technology

    Taproot is an upgrade to Bitcoin which introduced Schnorr signatures, Pay-to-Taproot (P2TR) outputs, and new scripting capabilities. P2TR outputs offer great privacy improvements and enable Merkelized Alternative Script Types, a way for bitcoin to be locked to multiple scripts at once.

  • @6517313784 #8464 08:59 PM, 07 Nov 2023
    so regular bitcoin wallets use taproot
  • @6517313784 #8465 08:59 PM, 07 Nov 2023
    and counterparty wallets won't be upgraded til january?
  • @6517313784 #8466 09:00 PM, 07 Nov 2023
    so how will that effect the transactions on counterparty? won't we have problems
  • @davesta #8467 09:00 PM, 07 Nov 2023
    looks like Freewallet dot io is the only wallet preparing for this address and functionality addition from my knowledge
  • @davesta ↶ Reply to #8466 #8468 09:01 PM, 07 Nov 2023
    they are two entirely different addresses and transaction types
  • @davesta #8469 09:01 PM, 07 Nov 2023
    XCP uses the OP_RETURN function
  • @davesta #8470 09:01 PM, 07 Nov 2023
    you wont be able to even use taproot on a legacy or segwit address
  • @davesta #8471 09:01 PM, 07 Nov 2023
    (from my knowledge of the tech) - someone chime in if i am wrong
  • 08 November 2023 (2 messages)
  • @davesta ↶ Reply to #8467 #8472 03:03 AM, 08 Nov 2023
    @krostue id love to know if others are
  • @davesta #8473 03:03 AM, 08 Nov 2023
    but first I've seen taproot evidence of future use is in v 0.9.25
  • 10 November 2023 (7 messages)
  • @6537557418 #8474 12:10 PM, 10 Nov 2023
    Joined.
  • @6798459366 #8475 12:10 PM, 10 Nov 2023
    Joined.
  • @6517313784 #8476 07:44 PM, 10 Nov 2023
    i been looking at the exchange. so if i have a token i can exchange with another token with the owner yes?
  • @6517313784 #8477 07:44 PM, 10 Nov 2023
    typo without the owner yes?
  • @6517313784 #8478 07:45 PM, 10 Nov 2023
    theres no way to ban my token from being exchanged is there? No on off button?
  • @davesta ↶ Reply to #8478 #8479 08:14 PM, 10 Nov 2023
    this is a decentralized system and anybody who owns your token can sell it in many places however they like.... you cannot "ban" people from selling something once they own it
  • @davesta ↶ Reply to #8476 #8480 08:53 PM, 10 Nov 2023
    as for Token to Token trading on the Counterparty DEx you can read about how to do that here:

    https://gist.github.com/davestaxcp/1e2cc086a13c9a2d045876852b57e5be#starting-an-exchange-pair-that-has-no-orders-up-yet-on-the-dex
    Freewallet FAQ 2023 v0.9.23 - Write Up - Draft #5

    Freewallet FAQ 2023 v0.9.23 - Write Up - Draft #5. GitHub Gist: instantly share code, notes, and snippets.

  • 13 November 2023 (7 messages)
  • @sn_noop2 #8481 12:15 PM, 13 Nov 2023
    Hi there look to be an issue with MULTISEND in counterparty api.

    It happens when you try at least 2 recipient multisend with one with BTC.

    for instance 2 different recipients, sending BTC.

    Note it happens with 1000x enough BTC.

    Any insight?
  • @jdogresorg #8482 02:36 PM, 13 Nov 2023
    Multisend meant for sending assets not btc…. Pls create a GitHub issue for this n we can look into adding support for multiple btc outputs
  • @B0BSmith #8483 02:50 PM, 13 Nov 2023
    This may seem like a silly question but just want to check something ...

    Counterparty uses the same private key for Segwit (addresses starting bc1) as it does for Legacy (addresses starting g 1) does this mean it uses an identical public key?
  • @B0BSmith #8484 02:51 PM, 13 Nov 2023
    I think it's does but i just want to be sure
  • @B0BSmith #8485 02:54 PM, 13 Nov 2023
    I know compressed vs uncompressed addresses come from same private key but the public key differs
  • @hodlencoinfield #8486 02:58 PM, 13 Nov 2023
    yes same public key
  • @B0BSmith #8487 02:59 PM, 13 Nov 2023
    ty
  • 15 November 2023 (18 messages)
  • @XJA77 ↶ Reply to #8489 #8490 03:58 AM, 15 Nov 2023
    where do you have all this tokens ser?
  • @XJA77 #8492 04:01 AM, 15 Nov 2023
    why host2.xchain.io and xchain.io are not showing the same info?
  • @RareBoboBTC #8495 08:07 AM, 15 Nov 2023
    Joined.
  • @rarepepetrader #8496 11:24 PM, 15 Nov 2023
    I'd like to start automating some of my addresses/inventory asset data updating in excel or google sheets

    Can anyone point me to any scripting or automation methods for pulling the current contents of an address into a google sheet or excel sheet, or just a CSV would be fine.
  • @XJA77 #8497 11:44 PM, 15 Nov 2023
    i believe excel added python support so maybe you can call xchain api with it and upload balances
  • @XJA77 #8498 11:45 PM, 15 Nov 2023
    is a cool project i wanted to do it some time ago before python update but i didnt know anything about excel but now with python is other thing
  • @sn_noop2 ↶ Reply to #8496 #8499 11:45 PM, 15 Nov 2023
    You mean just to see aggregated xcp balance?
  • full list of all assets and asset balances, so I can manage all my addresses/assets inventory
  • @sn_noop2 #8501 11:49 PM, 15 Nov 2023
    Depends on how many assets you want but you can use this https://xchain.io/api/balances/ADDY_HERE

    And if you need more data per addy:
    https://xchain.io/api/balances/ADDY_HERE/2
    https://xchain.io/api/balances/ADDY_HERE/3
  • my largest address has 1415 different assets currently
  • @rarepepetrader #8503 11:52 PM, 15 Nov 2023
    so I need a simple python or javascript to loop through those pages till the end, pulling into an excel or google sheet, or a csv text file
  • @sn_noop2 ↶ Reply to #8500 #8504 11:53 PM, 15 Nov 2023
    Also depending on why you need the data, you can use https://wallet.xcp.ninja

    => create a fresh wallet (you can use your passphrase but not recommended)
    => add all your addies in read only
    => group them
    => select the group and check your balance
  • @rarepepetrader #8505 11:53 PM, 15 Nov 2023
    but I'm an almost no-coder ... I did university assignments in Pascal, Eiffel, Miranda, C in the early 1990's and a bit of PHP early 2000's... but I've not coded anything in 20 years
  • @rarepepetrader #8506 11:54 PM, 15 Nov 2023
    I need ongoing live balances of all assets across multiple addresses

    e.g. query: how many BERNIEPEPE across 20-odd addresses
  • @rarepepetrader #8507 11:56 PM, 15 Nov 2023
    so one model could be a sheet per address, with a master sheet that aggregates all in a table ... I'm pretty good with excel, but getting the data into sheets with regular update, like a daily cron job, is beyond me without some help :)
  • @rarepepetrader #8508 11:57 PM, 15 Nov 2023
    other option is running a full counterparty node and getting an SQL dev to build me some kind of DB front-end in Postgres or similar.... which is what I had under development in 2021, including auction automation in a bot, about 2/3 of the way to working deployment
  • @rarepepetrader #8509 11:57 PM, 15 Nov 2023
    but that's all written in Flutter/Dart, which I don't know at all
  • 16 November 2023 (15 messages)
  • @rarepepetrader #8510 12:03 AM, 16 Nov 2023
    so I have either a very small utility project, or a very large platform development project to resume early next year, subject to seed funding
  • @MarkLive #8511 12:06 AM, 16 Nov 2023
    What project?
  • depends whose asking :)
  • @robmbtc ↶ Reply to #8500 #8513 02:21 PM, 16 Nov 2023
    @hodlencoinfield I’m blanking on his name, but the old LTB dev built something that did this exactly, and if I recall correctly, if you had the BOOKKEEPER token you could use his service that gave you an XLS file for a given address. Not that it helps now, unless anyone has his contact info and he cares to help out.
  • @hodlencoinfield #8514 02:27 PM, 16 Nov 2023
    Ah I vaguely remember that
  • @hodlencoinfield #8515 02:29 PM, 16 Nov 2023
    What RPT is asking for tho you could just ask gpt-4 to build
  • @AryanJab ↶ Reply to #8513 #8516 02:33 PM, 16 Nov 2023
    I can whip that up. CSV for an address.
  • @robmbtc ↶ Reply to #8516 #8517 02:41 PM, 16 Nov 2023
    @rarepepetrader is the one who seems to need this, I was just recalling that memory
  • @jdogresorg ↶ Reply to #8513 #8518 03:33 PM, 16 Nov 2023
    Devon Weller? Think I remember that product…. Was under tokenly umbrella…. He used to do a bunch of dev on cp….. til some community members attacked him for doing dev work….. threatened to sue him for working on hobby projects (bitcoin cash fork drama)…. So he noped out…… gotta always remember devs dev cuz they love to dev…. If dev becomes un-fun or ppl get attacked for doing work…. Eventually devs move on to other projects….

    Protect n defend ur devs 😜

    </end rambling>
  • @robmbtc ↶ Reply to #8518 #8519 03:35 PM, 16 Nov 2023
    Actually, not Devon, but CryptoNaut, or something like that (forget his real name). I didn’t know that happened to Devon though, that sucks.
  • @jdogresorg #8520 03:35 PM, 16 Nov 2023
    Ahh my bad memory😜
  • @jdogresorg #8521 03:36 PM, 16 Nov 2023
    Lots of unknown community drama over the years…. We try to minimize it n stay focused on the prize tho cuz that’s what really matters…. Progress not squabbling 😜👍🏻
  • @robmbtc ↶ Reply to #8520 #8522 03:37 PM, 16 Nov 2023
    No, your memory might be right, there were two devs.
  • @jp_janssen #8523 04:04 PM, 16 Nov 2023
    Devon was really good. Anyone still in touch with him?
  • @davesta ↶ Reply to #8517 #8524 06:14 PM, 16 Nov 2023
    I would love this too
  • 17 November 2023 (27 messages)
  • @shannoncode #8525 04:09 PM, 17 Nov 2023
    has anyone ever opened freewallet on osx and had everything gone? looks like a new install with no addresses?
  • @jdogresorg #8526 05:42 PM, 17 Nov 2023
    Sounds like freewallet data directory (where user-specific data is stored) got wiped.... on mac the path is ~/Library/Application Support/FreeWallet/Default
  • @6517313784 #8527 07:55 PM, 17 Nov 2023
    how come the token names are ALL CAPS
  • @6517313784 #8528 07:55 PM, 17 Nov 2023
    which wallet lets u do upper and lowercase ?
  • @6517313784 #8529 07:57 PM, 17 Nov 2023
    what if im tryna name my asset coolAID?
  • @davesta ↶ Reply to #8529 #8530 07:58 PM, 17 Nov 2023
    named assets are all uppercase and 12 letter maximum. Subassets are upper and lowercase and 256 character maximum
  • @davesta #8531 07:58 PM, 17 Nov 2023
    you also cannot start an asset with the letter "A" nor can you do an asset less than 4 letters
  • @davesta #8532 07:58 PM, 17 Nov 2023
    though, with BTNS you can
  • @6517313784 #8533 07:59 PM, 17 Nov 2023
    whats BTNS?
  • @davesta ↶ Reply to #8532 #8534 07:59 PM, 17 Nov 2023
    which is a new token naming system using broadcasts
  • @6517313784 #8535 07:59 PM, 17 Nov 2023
    oHHH
  • @davesta #8536 07:59 PM, 17 Nov 2023
    GitHub - jdogresorg/Broadcast-Token-Naming-System: Broadcast Token Naming System (BTNS) specs, docs, and tools

    Broadcast Token Naming System (BTNS) specs, docs, and tools - jdogresorg/Broadcast-Token-Naming-System

  • @6517313784 #8537 08:11 PM, 17 Nov 2023
    so the ASSET NAME ON FREEWALLET WILL IT ALLOW NUMBERS OR @!&$&y%*u*^% ???
  • @6517313784 #8538 08:12 PM, 17 Nov 2023
    LIKE $upToken?
  • @jdogresorg #8540 09:11 PM, 17 Nov 2023
    v9.61.0 release is out... in the process of updating the xchain and API servers... this update requires a rebuild of addrindexrs data, which can take a few hours.
  • @davesta ↶ Reply to #8537 #8541 09:24 PM, 17 Nov 2023
    not on XCP named assets, but on BTNS yes
  • @davesta #8542 09:25 PM, 17 Nov 2023
    XCP named is uppercase english letters only
  • @B0BSmith #8543 09:44 PM, 17 Nov 2023
    does the dust fixes include the multisiend dust issue that I ran into when I could not force the 1st part of a multisend to have more than 546 sats for the second tx to consume ? .. I am still waiting for my un cpfpable 1.3 sat byte tx to confirm .. maybe at Christmas the mempool will clear
  • @B0BSmith #8544 09:49 PM, 17 Nov 2023
    I have managed to deserialise a tx and add a output ,.., so I am gonna test adding a cpfpable output to z multisend ..on the end of the 2nd tx
  • @jdogresorg #8546 09:51 PM, 17 Nov 2023
    No... looks like that issue is still open.
  • @jdogresorg #8547 09:51 PM, 17 Nov 2023
    Dust Size in P2SH Encoding · Issue #1269 · CounterpartyXCP/counterparty-lib

    I am trying to increase the dust amount used in the step 1 of the 2 step p2sh multi send encoding method, so as to have control over how many satoshis are available to be used as the transactions f...

  • @jdogresorg #8548 09:51 PM, 17 Nov 2023
    will get it into the next release 🙂
  • @jdogresorg #8549 09:51 PM, 17 Nov 2023
    will be adding custom_outputs param in next release anyway... so will be revisiting the P2SH dust code 🙂
  • @davesta #8551 10:03 PM, 17 Nov 2023
    added the bug i found in BTCpay as an issue. lmk if this is the correct place to post it ❤️

    https://github.com/CounterpartyXCP/counterparty-lib/issues/1278
    Bug for small BTC size order with BTCPAY · Issue #1278 · CounterpartyXCP/counterparty-lib

    Looking to see if this bug mentioned here CounterpartyXCP/cips#96 (comment) can get looked at and fixed to help new users wanting to use small amounts of BTC to be able to succesfully use the BTC/T...

  • @jdogresorg #8552 10:05 PM, 17 Nov 2023
    Thx.. will get that lowered in the next release
  • 18 November 2023 (4 messages)
  • @camzjamz #8553 01:27 AM, 18 Nov 2023
    @jdogresorg I remember reading with the past update a circumstance could arise where you are required to make or enter a password and if you mess up your wallet is locked forever. Is this still the case? I’ve been afraid to open my wallet
  • @jdogresorg #8554 01:30 AM, 18 Nov 2023
    Yeah, there was an issue in FREEWALLET 0.9.24 where a wallet could get locked and not unlocked.... but, that issue was only out in the wild for a few days, and 0.9.25 fixed that issue and works fine
  • @jdogresorg #8555 01:31 AM, 18 Nov 2023
    You should always have backups of your 12-word passphrase and private keys... just in case 🙂
  • @camzjamz #8556 02:02 AM, 18 Nov 2023
    Thanks Jdog you the MVP
  • 20 November 2023 (14 messages)
  • @6517313784 #8560 05:37 PM, 20 Nov 2023
    what's wrong with the counterparty servers ?
  • @6517313784 #8561 08:00 PM, 20 Nov 2023
    anybody?
  • @sn_noop2 #8562 08:18 PM, 20 Nov 2023
    What's wrong?
  • @jdogresorg ↶ Reply to #8560 #8563 09:05 PM, 20 Nov 2023
    You tend to have a habit of doing this... "Anyone know whats up with the counterparty servers?... is xchain down?"... rather than asking general questions, perhaps try demonstrating WHY you think there is an issue.... AFAIK there are no issues, all servers are up and operating normally... if that is not he case, perhaps try showing some evidence as to WHY you think it is having problems, etc.
  • @reinamora_137 #8564 09:12 PM, 20 Nov 2023
    Always Mikes fault afaik
  • @6517313784 #8565 09:14 PM, 20 Nov 2023
    what is afaik?
  • @6517313784 #8566 09:18 PM, 20 Nov 2023
    this morning someone said they cant do their transactions because of this?
  • @6517313784 #8567 09:18 PM, 20 Nov 2023
    online wallet
  • @6517313784 #8568 09:19 PM, 20 Nov 2023
    servers down supposedly kept them from transacting. When you say its working and operating normally what does that mean?
  • @sn_noop2 #8569 10:27 PM, 20 Nov 2023
    Those are just status that says "unknown" for CP. For me tx are working correctly. Have you tried?

    "up and operating normally", sorry there is no clearer way to say what it says

    @jdogresorg I wonder how you do this for a decade lol.. Your the best 🔥
  • @6517313784 #8570 10:27 PM, 20 Nov 2023
    thought as much Noop very good
  • @davesta #8571 10:39 PM, 20 Nov 2023
    Anybody interested to see the visual infographic of Counterparty Tokens/Project/Developments/Forks from 2014 - 2021?

    https://time.graphics/line/858561
    Counterparty Historic NFT Timeline - Timeline

    All events are represented on the interactive timeline and can be visualized. You can review all the cause-and-effect relations of timeline

  • @jdogresorg ↶ Reply to #8568 #8572 10:58 PM, 20 Nov 2023
    it means counterparty and xchain and freewallet are all working normally.... counterwallet is old/outdated and NOT the way most users use counterparty (doesn't support the latest features).... I restarted counterblock, so those srevers should be back up again shortly
  • @B0BSmith #8573 11:17 PM, 20 Nov 2023
    Idea for a CIP: Now that Counterparty defaults to using op_return and only uses p2sh and multisig when needed could the restriction on needing a user to have first made a transaction revealing their public key be relaxed little?

    This would allow users to more easily interact with Counterparty.

    This change would allow all op_return based counterparty api functions to be available to new users without them first having to have made a bitcoin transaction.

    So the first transaction they make could be a asset send or a dispenser opening or an asset destruction
  • 21 November 2023 (84 messages)
  • @6517313784 #8574 12:22 AM, 21 Nov 2023
    Im trying to do AUCTION token but it says i cant start with the letter A?
  • @6517313784 #8575 12:23 AM, 21 Nov 2023
    how do fix this?
  • CLONE COUNTERPARTY CODEBASE AND MAKE A NEW PROTOCOL WITH A ASSET NAMES WORKING, CALL IT ALPHAPARTY AND LAUNCH IT ON BSV CHAIN
  • @AryanJab ↶ Reply to #8575 #8577 12:24 AM, 21 Nov 2023
    There's nothing to fix. It just is.
  • @rarepepetrader #8578 12:25 AM, 21 Nov 2023
    Asking for A assets...

    It was my first question in Counterparty Slack in 2016 😉
  • @rarepepetrader #8579 12:25 AM, 21 Nov 2023
    well, maybe not my first question, but it was my first big burning question :)
  • @6517313784 #8580 12:25 AM, 21 Nov 2023
    ah shit
  • @jdogresorg ↶ Reply to #8580 #8581 12:28 AM, 21 Nov 2023
    Houston…. You’re aware this is the DEV channel right???… for conversations on development…. If you just have general questions and “Is x working”, please take it to the main CP channel….. let’s try to keep
    This channel focused on DEVELOPMENT talk please😃👍🏻
  • I'll pipe down as well, not the place for my odd humor.
  • @jdogresorg ↶ Reply to #8573 #8583 12:30 AM, 21 Nov 2023
    Sounds reasonable…. Pls create a GitHub discussion for it to log the idea…. Can prolly get in next release👍🏻
  • @jdogresorg ↶ Reply to #8582 #8584 12:32 AM, 21 Nov 2023
    I enjoyed ur honest yet smartass reply…. Alphaparty😜
  • @rarepepetrader #8585 12:55 AM, 21 Nov 2023
    At one point I was seriously considering an attempt at porting to Algorand and calling it Alphaparty for the lulz... but then Algorand hired a Woke CEO and worked with the Clinton Foundation in India, so I was like "Fuggem" and forgot about it.
  • @rarepepetrader #8586 12:56 AM, 21 Nov 2023
    you might recall my post on that topic couple of years ago, where I was excited to see if Algorand Standard Assets plus their atomic rollback support in their TEAL - transaction execution assembly language - would unlock a range of near EVM like capabilities
  • @nutildah ↶ Reply to #8571 #8587 02:36 AM, 21 Nov 2023
    This is awesome bud, a great graphical representation of all the milestones, well done
  • @davesta ↶ Reply to #8587 #8588 02:37 AM, 21 Nov 2023
    Thank ya! Lots of help from you too
  • @B0BSmith #8589 10:06 AM, 21 Nov 2023
    Idea for CIP - Relax rules requiring a user to have published a pubkey · CounterpartyXCP/cips · Discussion #125

    Now that Counterparty mainly uses OP_RETURN it would make on boarding new users easier if the rules requiring a user to have previously published a pubkey could be relaxed A pub key is only require...

  • @B0BSmith #8590 11:03 AM, 21 Nov 2023
    What's the logic for restricting how many times a dispenser can be refilled?

    If a dispenser is successful and sells out everytime why prevent it from being refilled?

    A user can always create a new address and open a dispenser ..so why prevent a refill to a successful dispenser ?
  • @krostue ↶ Reply to #8079 #8591 01:13 PM, 21 Nov 2023
    I don't see refill limit mentioned anywhere in this chat. Is it mentioned in GitHub?
  • @B0BSmith #8592 01:16 PM, 21 Nov 2023
    I see refills were mentioned on git hub but not refill limits
  • @B0BSmith #8593 01:17 PM, 21 Nov 2023
    it makes no sense to me but perhaps I missing something ?
  • @krostue ↶ Reply to #8015 #8594 01:17 PM, 21 Nov 2023
    I tried to address a very real concern coming from the perspective of a publisher
  • @jdogresorg ↶ Reply to #8593 #8595 01:39 PM, 21 Nov 2023
    We put the dispenser limit in to limit the amount of dispenses dispenser could do… to address the hot wallet address dispenser issue that counterparty has… we put a refill limit on so that certain dispensers who wanted to dispense over 1000 could via a refill….. as some community members were saying they wanted dispensers that could go over 1000…. So we provided a method to do over 1000 dispenses via refilling a dispenser up to five times.

    I failed to see why a dispenser refill limit is a huge deal … you can close the dispenser at any time… abuse of dispensers are automatically closed at 1000 dispenses.. and users, who want their dispenser to dispense beyond 1000 are able to do so via refill.
  • @jdogresorg ↶ Reply to #8015 #8596 01:40 PM, 21 Nov 2023
    You are in the minority who feels that the hot wallet dispensers are not abuse…. The majority of the community feels that the dispensers are abuse, and are sick and tired of seeing counterpart being beat on….. even the original person who created the hot wallet dispenser has apologized and said he would close it if he could

    I’m sorry you do not see a single address spamming counterparty with over 30,000 dispenses as an issue … the majority of the community does
  • @B0BSmith #8597 01:41 PM, 21 Nov 2023
    Refills being limited when new dispensers can be setup seems to make dispenser refill limits pointless
  • @B0BSmith #8598 01:43 PM, 21 Nov 2023
    it only seems to serve as a punishment mechanisim on successful dispensers
  • @jdogresorg ↶ Reply to #8597 #8599 01:44 PM, 21 Nov 2023
    Refills on dispensers was added by request of community members who had set up dispensers on Wallet addresses, like Satoshi’s address… where they were upset that the thousand dispense limit would close their dispenser… allowing a refill on that dispenser allows them up to 5000 dispenses
  • @B0BSmith #8600 01:46 PM, 21 Nov 2023
    by why limit refils ? why not allow unlimited refill?s .. refill is les database bloat than new dispenser on new addresses
  • @B0BSmith #8601 01:48 PM, 21 Nov 2023
    an address being re used is more compressible than an endless amount of new addresses
  • @jdogresorg #8602 01:48 PM, 21 Nov 2023
    Because we also added the origin field, which allows the original person who opened a dispense to reopen a dispenser on that address so if we did not a refill limit on then people would be able to refill forever… dispense limit and refill limit sit in the sweet spot where we limit the amount of bloat to the counterpart database allow dispensers to dispense up to 1000 by default up to 5000 via refills
  • @jdogresorg #8603 01:52 PM, 21 Nov 2023
    Driving to yoga will be back on in a little bit to answer any additional questions…. Please keep in mind that not everyone is always going to agree with code…. But that at some point someone has to do something to address issues….. over 200,000 has been lost via rug Spencer’s in the last year so I’m implementing Jose block closed delay….. we have a problem with dispenser spam and have for six months… so I am implementing dispense limits and refill limits to address this issue…. As always code can be changed and tweaked… but with no changes the issues remain
  • @jdogresorg #8604 01:52 PM, 21 Nov 2023
    Driving to yoga will be back online to answer any questions in a little while
  • @B0BSmith #8605 01:54 PM, 21 Nov 2023
    I personally do not agree with the 1000 dispense limit .. it makes CP more expensive to use for successful dispensers .. I understand there was an issue with a dispenser on a exchange address.. but additional logic/cheks on what is considered a 'empty' address can prevent such dispensers being opened

    Now everyone everyone must pay more to open dispensers if successfull .. I would be happy to pay a xcp fee for larger dispensers .. but paying miners over n over n over again simply increases the price to use CP and dors not limit dispenses of a token
  • @B0BSmith #8606 01:55 PM, 21 Nov 2023
    xcp is anti spam when it comes to Sweeps so why not dispensers?
  • @jdogresorg ↶ Reply to #8605 #8607 01:56 PM, 21 Nov 2023
    You are correct additional checks on dispensers before opening them could solve this….. which is why we took a week to redefine what empty was to me no XP or BTC history… yet another change in this update
  • @jdogresorg ↶ Reply to #8606 #8608 01:56 PM, 21 Nov 2023
    Many in the community see counterparty as a shit coin, and do not use counterparty specifically because it has XP this is a silly viewpoint, but it is clear the community at large does not want more requirement of usage of SCP
  • @B0BSmith #8609 01:57 PM, 21 Nov 2023
    that's a educational issue.. Burnt bitcoins are not shitcoins like say eth with its premine
  • @jdogresorg #8610 01:59 PM, 21 Nov 2023
    Agree… but An educational issue never addresssed in 9 years…not an easy issue to solve👍🏻
  • @B0BSmith #8611 01:59 PM, 21 Nov 2023
    a lie can encircle the globe before the truth can get its pants on
  • @B0BSmith #8612 02:02 PM, 21 Nov 2023
    XCP is the mechanism used to charge for dividends and sweeps and registrations ... if ppl don't want to use xcp that's fine .. but how do they sweep? I guess they send asset ownerships one at a time ? or do they stand down on their misguided principles and pay the xcp fee?
  • @B0BSmith #8613 02:05 PM, 21 Nov 2023
    sweeps have even been updated to use xcp in a new way very recently ..so community seems OK with xcp from that perspective 🤔
  • @hodlencoinfield #8614 02:44 PM, 21 Nov 2023
    sweeps have always used XCP
  • @sn_noop2 #8615 02:45 PM, 21 Nov 2023
    And almost noone use sweep
  • @B0BSmith #8616 03:07 PM, 21 Nov 2023
    Sweeps are not a daily use thing like say sends are .. but they are a very useful tool ...

    I am planning to build sweeps functionality in to my CP P2SH Multisig wallet as its best way to transfer many assets .. Multisend is lacking at the api level so sweep is better option even tho it means having to use 'a shitcoin' 😁
  • @B0BSmith #8617 03:24 PM, 21 Nov 2023
    So shitcoining is OK when sweeping and doing dividends coz it's always been that way but no new shitcoining shall be tolerated. Yet we are ok to do more shitcoining when DB bloat is a concern with potential sweep abuse ... but we mustn't add xcp antispam tech when faced with actual dispenser abuse, instead we restrict dispensers even tho the abuse was fixed by redefining 'empty address'
  • @jdogresorg #8618 03:29 PM, 21 Nov 2023
    XCP has always been an anti-spam mechanism…. Not a pay to use the system token…. XCP has traditionally only been used to prevent spam….. bulk asset registrations… Sweeps where thousands of records can be created in a single transaction, etc.

    I agree XCP is NOT a shitcoin … but it is an anti-spam mechanism token originally… and I am of the belief that we should keep it as an anti-spam mechanism….

    I think we’re fundamentally talking about a differences of viewpoints of how counterpart should be used …. It sounds like you want people to use XCP to pay for every action in counterparty?…. Or at least that’s the direction it seems we’re going with requiring XCP for more functions.

    I personally prefer to only use XP as an anti-spam mechanism …. The exact same way the founders used it.

    If the founders wanted XCP to be a pay to use system, I imagine they would’ve put an XCP requirement on sends, orders, broadcasts, and other functionality that users would use daily….. however, they did not do that for a reason.
  • @B0BSmith #8619 03:31 PM, 21 Nov 2023
    I am not pushing for xcp to be used for all actions ..not at all .. I am of the opinion if DB bloat is a problem then xcp anti spam tech is the way to go ..dispenser issues have been addressed by increasing btc fees (dispenser refills are pure btc tax on dispensers) xcp antispam didn't even get a look at
  • @jdogresorg ↶ Reply to #8617 #8620 03:32 PM, 21 Nov 2023
    To clarify, redefining empty, would not close dispensers, already opened on hot wallet, addresses…. The only way to close those problems dispensers was specifically calling them out with a blacklist which the community did not want or to limit the number of dispenses any single dispenser can make which is what is in the latest release
  • @B0BSmith #8621 03:33 PM, 21 Nov 2023
    the origin updates allows such dispensers to be closed and the user would have done that I thought they said
  • @jdogresorg #8622 03:46 PM, 21 Nov 2023
    Closing the dispenser on the hot wallet, addresses only solves the problem on those dispensers…. It does not stop someone from doing something similar and creating a dispenser on an address which will dispense hundreds of thousands of times….. a user closing a single problem dispenser would not stop the problem of a single dispenser dispensing forever…. Hence the dispenser limit of 1000.

    I’m sorry you don’t agree with all the updates in this release , however, they were all well thought out discussed with multiple community members, and tested before being implemented.

    If this new release introduced a problem, then please come at me with evidence of a problem.

    You have mentioned how theoretically it could make dispensers more expensive to use because a user could have to refill up to five times ….

    Yet failed to see or mention the fact that adding the origin field allows for things to be done much cheaper…. No longer does a user have to send BTC to a dispenser address and then send BTC and tokens out of that dispenser address to the original address…. Dispenser addresses can be managed remotely from the origin address…. You can open a dispenser on an empty address close the dispenser on an empty address from the origin, and have the dispenser funds credited back to the original address instead of the dispenser address.

    This addition alone, makes dispenser management much easier and saves tons of bitcoin that would be wasted, moving tokens between dispenser addresses, and origin addresses (something we see happen many times each day)

    I’m sorry that you disagree with dispenser refills .. they can easily be enabled or disabled in the future if they become problematic and the community wants a change…. But considering that all of the dispensers that have ever been created, only a handful of them have ever been refilled, and of those, we have not seen one dispenser refilled five times.
  • @B0BSmith #8623 03:49 PM, 21 Nov 2023
    I very much like the origin dispenser update .. I have had to move btc to close dispensers in the past, being able to manage a dispenser from a remote address is a great solution to a real problem
  • @B0BSmith #8624 03:54 PM, 21 Nov 2023
    I would have thought creating successful dispensers would be seen as a good thing not a bad thing ... and if too successful then applying some xcp antispam tech ... like I dunno every 100,000 dispenses needs to burn 1 xcp or something .. a price that's reasonable would need to be decided .. this assumes its not possible to open dispensers on exchange addresses which I understand is now the case
  • @B0BSmith #8625 03:55 PM, 21 Nov 2023
    if no xcp was available to burn after 100,000 dispenses then force close it
  • @jdogresorg #8626 03:55 PM, 21 Nov 2023
    You can still open a dispenser on any address with no history… so we still have a situation where someone could pre-announce a busy address before it has any history… another person could open up a dispenser on that busy address, and we are right back to where we are now with dispensers opened on high volume addresses, and no ability to stop them without a limit
  • @B0BSmith #8627 03:56 PM, 21 Nov 2023
    yeah its impossible to know how busy a address will become
  • @jdogresorg ↶ Reply to #8624 #8628 03:59 PM, 21 Nov 2023
    How would that even work? The dispenser operator is supposed to guess how many dispenses their dispenser will have, and pay some XCP fee, which some community members have determined, is fair before having a dispense??

    That seems to make using dispensers much more complex as it requires them to get XCP before they even open up a dispenser.

    No solution that someone put forth is going to make everyone happy . The solutions put forth in this release address problems that counterparty has and uses XCP in the way that it traditionally has been used as an anti-spam mechanism

    As I mentioned, earlier code can always be tweaked and removed if it proves to be problematic or the community as a whole wants it removed … but counterparty has issues now that need addressed now, which is what this release does.
  • @jdogresorg ↶ Reply to #8625 #8629 04:01 PM, 21 Nov 2023
    Sounds like an interesting proposal… I’d be interested to see it written up and possibly implemented in the future if the community agrees with it
  • @B0BSmith ↶ Reply to #8628 #8630 04:02 PM, 21 Nov 2023
    escrow amount and price determine how many dispenses are possible

    xcp not needed if you plan to dispense well below xcp anti spam limit.. so if dispenser is opened with no xcp balance it can only dispense 100,000 times.. if you want to dispense 500,000 token then 4 xcp will be needed ..1 for each 100,000 dispenses above the initial 100,000
  • @B0BSmith #8632 04:03 PM, 21 Nov 2023
    yeah and then your not hitting anti spam limits ..one tx and done
  • @B0BSmith #8633 04:03 PM, 21 Nov 2023
    max dispenses is determined by escrow amount and price
  • @jdogresorg #8634 04:03 PM, 21 Nov 2023
    That sounds interesting.. I’d be curious to see it written up n know what your XCP requirements are and your dispenser limits are set at… could be a workable solution in the future
  • @B0BSmith #8635 04:04 PM, 21 Nov 2023
    user could add xcp to allow continued dispensing
  • @B0BSmith #8636 04:06 PM, 21 Nov 2023
    I just trying to think through how to prevent the spam ..yet allow users to have dispensers that are not limited by using xcp for antispam

    will practice at CIP creation with my pubkey idea I opened a discussion on and then look to write a dispenser one
  • @B0BSmith #8637 04:07 PM, 21 Nov 2023
    I hope one day to sell one million unlocked tokens ...I expect I am not alone 😂
  • @B0BSmith ↶ Reply to #8634 #8638 04:10 PM, 21 Nov 2023
    I would like to hear your opinion on how much xcp should be used for antispam ... i said 1 xcp per 100,000 dispenses to illustrate my point .. perhaps its 1 xcp for 1000 dispenses is the correct amount ?
  • @jdogresorg ↶ Reply to #8637 #8639 04:11 PM, 21 Nov 2023
    Considering the entire counterparty database is 2.5 million transactions…. I think we’re pretty far off from being able to have millions of dispenser records…. I definitely want to see counterparty scale up to handle more transactions….. but we also got to figure out a way to keep the database small and sane and not explode….. or else the whole tower of cards falls down. 😢

    Finding that sweet spot is the constant struggle 😜
  • @jdogresorg ↶ Reply to #8638 #8640 04:14 PM, 21 Nov 2023
    Well, if we use the same logic that we just implemented and sweeps where it is 0.001 XCP per database hit… a dispense hits the database three times

    One hit for the dispense record
    One hit to update the dispenser record
    One hit for the credit record

    3 hits == 0.003 xcp per dispense….

    But I’m just spitball numbers right now …..
  • @B0BSmith ↶ Reply to #8639 #8641 04:17 PM, 21 Nov 2023
    ok 1 million is a lot if we only at 2.5 million so far after all these years .. and thank you for the info re sweeps pricing in xcp and database hits for dispenses
  • @krostue ↶ Reply to #8622 #8642 06:10 PM, 21 Nov 2023
    'I’m sorry you don’t agree with all the updates in this release , however, they were all well thought out discussed with multiple community members, and tested before being implemented'

    May I please have a link to this? Documentation of testing. Discussion with multiple members involved. Did that all happen on GitHub?
  • @jdogresorg #8643 06:38 PM, 21 Nov 2023
    The release has links to all pull requests that make up the release… each pull request is linked to an issue or enhancement and includes testing info in the PR

    It’s all linked and available if you look…. Also conversations took place on github, forums, n dev chat room, same as always.
  • @hodlencoinfield #8644 06:50 PM, 21 Nov 2023
    does this update fix the issue created with modifying callable assets when the initial change to issuance was made? https://github.com/CounterpartyXCP/counterparty-lib/pull/1258
    Issuance backwards compatibility by pataegrillo · Pull Request #1258 · CounterpartyXCP/counterparty-lib

    Counterparty Protocol Reference Implementation. Contribute to CounterpartyXCP/counterparty-lib development by creating an account on GitHub.

  • @jdogresorg #8645 06:56 PM, 21 Nov 2023
    Yes… we now use new ids for asset/subasset issuances instead of modifying the old format…. Should be able to parse all issuance types now
  • @jdogresorg #8646 07:01 PM, 21 Nov 2023
    @pataegrillo should be able to answer the more technical questions if you need more info 👍🏻
  • @hodlencoinfield #8647 07:03 PM, 21 Nov 2023
    it looks from the PR that it just accepts the new IDs for issuance txs but doesnt actually revert the unpacking of issuance 20 and 21 types to what it was prior to adding the lock and reset flags
  • @hodlencoinfield #8648 07:03 PM, 21 Nov 2023
    i could be missing something tho
  • @davesta ↶ Reply to #8615 #8649 07:58 PM, 21 Nov 2023
    False
  • I don't remember, but I'll check in a few hours
  • pls, remind something, you have some tokens with callability properties and you want to create an issuance to change them but you can't because you get the "can't change callability parameters" or something, right?
  • @hodlencoinfield #8653 10:37 PM, 21 Nov 2023
    Yes exactly that
  • @hodlencoinfield #8654 10:37 PM, 21 Nov 2023
    I can give you Txid
  • @pataegrillo #8656 10:45 PM, 21 Nov 2023
    i think i fixed that, I removed the callability verification in the new version
  • @pataegrillo #8657 10:46 PM, 21 Nov 2023
    so, in theory you should be able to create an issuance with those assets
  • @hodlencoinfield #8658 10:56 PM, 21 Nov 2023
    Callability verification removal by pataegrillo · Pull Request #1219 · CounterpartyXCP/counterparty-lib

    Counterparty Protocol Reference Implementation. Contribute to CounterpartyXCP/counterparty-lib development by creating an account on GitHub.

  • 22 November 2023 (1 messages)
  • @krostue ↶ Reply to #8643 #8659 11:20 PM, 22 Nov 2023
    Thanks for taking the time to explain your claim again
  • 26 November 2023 (9 messages)
  • @stanbryl #8663 10:39 AM, 26 Nov 2023
    Joined.
  • @stanbryl #8664 10:39 AM, 26 Nov 2023
    I can't create emblem vault.
    I see "Check Fields!" disabled
    Anybody have idea?
  • umm, that doesn't make sense to me, why dm for quote price if its in a dispenser?
  • @rarepepetrader #8669 10:59 AM, 26 Nov 2023
    okay... well I'm interested in a second DJPEPE, but not at 0.25 BTC
  • @rarepepetrader #8671 11:00 AM, 26 Nov 2023
    0.21 would work
  • @rarepepetrader #8674 11:01 AM, 26 Nov 2023
    ok, please let me know when
  • @heunland ↶ Reply to #8666 #8675 11:46 AM, 26 Nov 2023
    Reminder that this is the Dev chat, not really an appropriate place to announce sales offers
  • @jdogresorg ↶ Reply to #8664 #8676 03:46 PM, 26 Nov 2023
    This is the dev channel… for talk about development…. Not basic support questions that ppl can answer in https://t.me/Counterparty_XCP
    Official Counterparty Chat

    Website — https://counterparty.io Docs — https://docs.counterparty.io GitHub — https://github.com/CounterpartyXCP/counterparty-core Twitter — @CounterpartyXCP

  • 27 November 2023 (48 messages)
  • @reinamora_137 #8680 09:51 PM, 27 Nov 2023
    Basically the stamps community just needs to delay the block activations that were pushed for this is all it boils down to. Give us time to test and validate as we have all been buried in getting the indexer prepped for release.

    I believe the push to master is being resolved with a dev branch so no surprises happen until a dev branch is ok’d and tested by all the node runners
  • @jdogresorg #8681 09:52 PM, 27 Nov 2023
    so node runners drive consensus now? heh
  • @reinamora_137 #8682 09:52 PM, 27 Nov 2023
    Isn’t that how btc works
  • @jdogresorg #8683 09:52 PM, 27 Nov 2023
    I replied to your comment about your desire to run a unnecessary FULL PARSE before you update your servers
  • @jdogresorg #8684 09:52 PM, 27 Nov 2023
    PROTOCOL MINOR UPDATE: V9.61 · CounterpartyXCP/cips · Discussion #124

    Let this be the space to discuss the next protocol-changing release, a consensus hashes affecting PROTOCOL MAJOR / MINOR UPDATE. Federated node operators, separate from the develop- branch leader, ...

  • @reinamora_137 #8685 09:53 PM, 27 Nov 2023
    We need a full parse on stamps data not necessarily cp data
  • @jdogresorg ↶ Reply to #8682 #8686 09:53 PM, 27 Nov 2023
    so... since we only have like 10-15 people running nodes.... I guess that means that what the COMMUNITY wants doesn't matter, just the ppl who run the nodes? Counterparty is not Bitcoin
  • @reinamora_137 #8687 09:53 PM, 27 Nov 2023
    We are in the midst of doing that with the prior version of cp
  • @reinamora_137 #8688 09:54 PM, 27 Nov 2023
    Well then we and xcp.dev fork from xchain. I believe that has been your wish all along
  • @jdogresorg ↶ Reply to #8685 #8689 09:54 PM, 27 Nov 2023
    got ya.... then a REPARSE on the bootstrap should ensure that the CP data is good... then do a reparse of STAMPS data (if neccessary).... could just compare TXLIST and LEDGER hashes between your 9.60.2 database and 9.61.0 database 🙂
  • @jdogresorg #8690 09:54 PM, 27 Nov 2023
    I replied to your concerns about a FULL PARSE... hopefully addresses some of your concerns. 🙂 https://github.com/CounterpartyXCP/cips/discussions/124#discussioncomment-7685889
    PROTOCOL MINOR UPDATE: V9.61 · CounterpartyXCP/cips · Discussion #124

    Let this be the space to discuss the next protocol-changing release, a consensus hashes affecting PROTOCOL MAJOR / MINOR UPDATE. Federated node operators, separate from the develop- branch leader, ...

  • @booo_urns ↶ Reply to #8678 #8691 09:55 PM, 27 Nov 2023
    i was just curious after trying to read through the proposal and comments if there was some main impact that the update was seeking to make as it wasn't clear
  • @reinamora_137 #8692 09:55 PM, 27 Nov 2023
    how is this so urgent anyway?
  • @jdogresorg ↶ Reply to #8688 #8693 09:56 PM, 27 Nov 2023
    LOL... yeah... for whatever reaons you think I want to push SRC-20 and stamps off CP.... no matter how many times I explain that is not the case, and that the issue was spamming... and even OTHER community members explaining it to you, you still see me as the villian
  • @jdogresorg #8694 09:56 PM, 27 Nov 2023
    So... I'm happy to get out of the way and let the CP community handle pushing forward releases going forward 🙂
  • @jdogresorg ↶ Reply to #8692 #8695 09:58 PM, 27 Nov 2023
    It isn't urgent.... all the changes have been discussed and pending for a long time.... this is the SAME exact release process we have always followed since the beginning of time (2 week activation after release)..... this whole painting it as a RUSHED release and as forced centralization is nonsense..
  • @XJA77 #8696 09:58 PM, 27 Nov 2023
    i dont hink everything has to be black or white, te dev branch actually is a good idea, to have a few nodes running it to verify there is no breakings in any of the projects that shares counterparty protocol
  • @jdogresorg #8697 10:00 PM, 27 Nov 2023
    agree... using develop branch IS a good idea... which is why I said 3+ weeks ago after this release we would start using develop... DEVELOP and MASTER are now in sync on 9.61.0.... which is what juan and others wanted... to use develop
  • @reinamora_137 #8698 10:00 PM, 27 Nov 2023
    i understand the reparse vs a full reparse however given our workload we did not digest the changes or to get prepared to make them. Doesn't seem like an unreasonable ask. especially if so few in the community are actually running nodes.
  • @reinamora_137 #8699 10:02 PM, 27 Nov 2023
    rushed is a relative term of course. it is rushed for us at this point now that we are putting more attention on the details of the implications of the change which require an upgrade to stay in consensus with xchain
  • @jdogresorg #8700 10:02 PM, 27 Nov 2023
    Cool... I look forward to watching you guys figure out how to move CP foward... I'm going back to just being a normal community member now with opinions... I'll still run xchain.io and freewallet.io... but i'm done with pushing any changes forward on CP dev for a while.... it is a thankless job.
  • @jdogresorg #8701 10:04 PM, 27 Nov 2023
    I already made this decision last week, and reached out to a few OG community members that I respect (@hodlencoinfield and @jp_janssen and @shannoncode) and requested that they request github repo access from the founders (as they are the owners of the project and the ONLY ones who have the ability to add devs to the team, and enable github commit access).
  • @reinamora_137 #8702 10:04 PM, 27 Nov 2023
    i don't believe there is anything inherently wrong with the changes. most of us are new to these major changes and process flow so need time to adjust is all. The new stamps indexer will bring at least several new cp nodes online with it so it's a benefit for everyone
  • sounds like a good step to get more devs in there to make collective decisions. I don't see this as contentious or you as the villain fwiw. just a slight change to the process and temporary delay is all as we evolve together and continue growing things.
  • @jdogresorg #8704 10:10 PM, 27 Nov 2023
    hehe... just a slight changeUnfortunately what is being DEMANDED by Juan is a change to how CP is run, consensus is run (nodes decide consensus now, not users, not community, not devs).... etc... Funny how the new devs are the ones objecting and saying how things SHOULD BE.... and ignoring the advice and knowledge and history of what IS and HAS BEEN.
  • 100% support jdog in his decision, but will miss him in the maintainer role, hes probly the only person i know that cares about the long term success of counterparty more than i do
  • @reinamora_137 #8706 10:11 PM, 27 Nov 2023
    i'm not even clear of all the requests made by Juan and don't care to get into all those details. Simply put we run a node which is imperative to stamps and a consensus change like this needs further review. If changes are being made to how it is being run with more devs having access and control on the rollout that seems like a good thing
  • i have no doubt there is lots of passion there, it's very evident.
  • nothing jdog is doing now is any different from how counterparty has been maintained all these years, all the development happened in public there was ample time for people to make suggestions, totally respect having a different opinion on the process and we can def make changes which jdog has also recognized quite publicly
  • @hodlencoinfield #8709 10:17 PM, 27 Nov 2023
    maintainer is a thankless job, i am thankful that jdog decided to take that burdon on from the moment the founders stepped away
  • @hodlencoinfield #8710 10:18 PM, 27 Nov 2023
    also have you looked at the update? it adds great functionality that we all agree we want
  • @sn_noop2 #8711 10:18 PM, 27 Nov 2023
    Jdog is not the founder? 😅 I'll end up completely lost lol
  • @hodlencoinfield #8712 10:18 PM, 27 Nov 2023
    closing dispensers from the origin address
  • @reinamora_137 #8713 10:18 PM, 27 Nov 2023
    perhaps consensus changes get a longer window of review. open to whatever you guys decide. we simply want to maintain consensus with all node operators and grow with things at a suitable pace. once we are done with this release it will be feasible to dive into the CP code in more depth and rewiew upcoming tweaks - considering that is the code base we used for the stamp indexer it's very easy to digest.

    Sorry for not being tuned into the proposed changes earlier. Still getting up to speed on things.
  • @hodlencoinfield #8714 10:19 PM, 27 Nov 2023
    transfer assets without changing asset description which specifically helps stamps
  • what exactly is your concern about running it?
  • @sn_noop2 ↶ Reply to #8710 #8716 10:20 PM, 27 Nov 2023
    Some of them are cool indeed, but reading all PRs is soo complicated. If releases were more atomic, it would make things way easier.
  • @reinamora_137 #8717 10:20 PM, 27 Nov 2023
    yeah i have seen chats on these things and don't have any issues with them in general. it's mostly just a timing thing with everything we are currently working on is all.
  • whcih we could talk about but thats not whats been done historically
  • @jdogresorg ↶ Reply to #8711 #8719 10:20 PM, 27 Nov 2023
    never was a founder..... never wanted repo access... only got repo access AFTER john died.... same with all the CP properties... only got them handed to be when the founders walked away cuz I was the only one running stuff still..... never was about a power grab... I was always here cuz of my love for CP... but time for the torch to be passed to other devs... I have absolute faith that @hodlencoinfield @jp_janssen and @shannoncode will treat the github repo and commit access with the respect it deserves, and only push forth changes the community wants.... overall this is a good thing for CP..... you wanted more github reviewers and coders, now ya got it 🙂
  • @AryanJab ↶ Reply to #8719 #8720 10:21 PM, 27 Nov 2023
    Thank you ser for your service.
  • @sn_noop2 ↶ Reply to #8719 #8721 10:21 PM, 27 Nov 2023
    Good to know, I heard things some day and assumed it was true
  • @jdogresorg ↶ Reply to #8721 #8722 10:22 PM, 27 Nov 2023
    yup... ppl make up history, very few care to ask when it doesn't serve their purposes 😛
  • @6079409426 #8723 10:23 PM, 27 Nov 2023
    damn
  • @reinamora_137 #8724 10:24 PM, 27 Nov 2023
    thanks for sharing. Very good to know the history. Thanks for all the hard work indeed. we'll all keep pushing things forward collectively i'm sure. I think we've all come a long way in holding it together and maintaining growth.
  • @6517313784 #8726 10:28 PM, 27 Nov 2023
    jdog please check your inbox
  • @6517313784 ↶ Reply to #8719 #8727 10:37 PM, 27 Nov 2023
    your love noted to ones who matter.
  • 28 November 2023 (60 messages)
  • @reinamora_137 #8731 06:47 AM, 28 Nov 2023
    @hodlencoinfield since it appears you are one of the peeps in charge now can we please request a deferral of a week to get this tested so we can stay in consensus here. If that’s not feasible or an inappropriate request just lmk for sure. Happy to help define a clear process as we will need to be do the same for our public repo and it will be a good reference of process.
  • @hodlencoinfield #8732 12:23 PM, 28 Nov 2023
    Personally I don’t see any reason to not update as scheduled, what stops someone else coming in a week from now and saying they too also haven’t been paying attention and need another week. Do you have any specific concerns about the update itself?
  • @sn_noop2 #8733 12:51 PM, 28 Nov 2023
    Would it hurt to delay a bit? What would stop another would be that it already have been delayed.

    A concern to me is the amount of changes in this release. I'm very sure you've done a great job and a lot of features are great and waited by a lot, including me.

    But atm, it feels unreachable to read and test everything in the release if you have not already actively worked in the project.

    @jdogresorg , big up for staying onboard for that long, some more people are coming.

    More people are starting to run CP nodes, I feel this as a good thing.

    I understand the drama, Juan has been a bit aggressive and the more talk kept going, the more tension there was.

    It looks like it lead to be no concession at all, not even a week or two of delay.
  • @krostue #8734 12:55 PM, 28 Nov 2023
    Heavy is the crown
  • @krostue #8735 12:55 PM, 28 Nov 2023
    You going to take constructive objections seriously and not slide them?
  • @reinamora_137 #8736 01:01 PM, 28 Nov 2023
    Concerns include the consensus changes completely untested on our end yet. A lack of documented process for minor vs consensus updates. Other concerns in GitHub that have not been addressed, etc.

    It’s not a publicly held company here with tight timelines for software release and budgets.

    It’s just a simple request amongst friends sharing memes so we can prepare and not fork from xchain is all it boils down to.
  • Have you attempted to upgrade or were you under the impression there would be a delay in activation?
  • @hodlencoinfield #8738 01:09 PM, 28 Nov 2023
    Im curious why there is no time as the activation block announced a week and a half ago and has been in the works for months
  • @hodlencoinfield #8739 01:12 PM, 28 Nov 2023
    I understand process concerns and i believe that’s begun to be addressed and is a priority going forward
  • @hodlencoinfield #8740 01:14 PM, 28 Nov 2023
    Should we go through the changes together in here one by one so you can highlight areas of concern?
  • @hodlencoinfield #8741 01:14 PM, 28 Nov 2023
    Could just go down the list in the PR
  • @krostue #8742 01:16 PM, 28 Nov 2023
    Poe's law
  • have not yet attempted upgrade or verification. This just really came up on my radar the other day as to the implications of such a consensus change.
  • realistically a host of work and professional obligations, added in a holiday week, loads of company, screaming babies, compounded with sleepless nights working on the stamps public indexer. Most of this is solely on me ofc, however several other new important devs which are helping and getting familiar with CP and it's processes are also unpreparaed.
  • @hodlencoinfield #8745 02:33 PM, 28 Nov 2023
    Is it just the fact that there are consensus changes in general or is there a particular one that concerns you
  • @reinamora_137 #8746 02:33 PM, 28 Nov 2023
    This was simply a personal request amongst friends. if there is too much conention with me do defer then that's fine. We are all here getting familiar with these major releases and learning to work together. Understanding that personal requests are not acceptable is fine.
  • i don't even know yet besides that consensus is changing and we aren't prepared to upgrade as of yet and the clock is ticking quickly.

    I guess if it activates on xchain and we don't upgrade. What happens in a week or two weeks after we are able to digest and push the upgrade to all unseen assets and the implications of those transactions being out of line between nodes?
  • @reinamora_137 #8748 02:35 PM, 28 Nov 2023
    i guess that's the biggest unknown unknown..
  • @hodlencoinfield #8749 02:37 PM, 28 Nov 2023
    You would be out of consensus in that case, and likely would be dealing with user issues as a result, also there would be no replay protection for users
  • @hodlencoinfield #8750 02:43 PM, 28 Nov 2023
    It’s also not just xchain that is upgrading, there’s emblem, pepewtf, freewallet, scarce city, etc
  • @hodlencoinfield #8751 02:43 PM, 28 Nov 2023
    Haven’t heard any concerns from anyone else
  • @hodlencoinfield #8752 02:44 PM, 28 Nov 2023
    Actually that’s not true, Juan is concerned but his comments are process related afaik, there was one concern with issuance backward compatibility but Javier pointed out the PR where that change was
  • @reinamora_137 #8753 02:44 PM, 28 Nov 2023
    ok so we are are forking from xchain which has been what we have been trying to protect for the community as a whole through at least one turbulent time already. Which then comes back to my personal request for a delay while we get new devs that are helping on the indexer and getting familiar with the CP processes up to speed to help test things as well. this includes xcp.ninja (noop), derp, rarestamp, and others that are commited to the future success of CP and stamps. I don't care to be the mouthpiece for this, but it has taken considerable efforts to onboard such resource.

    Those other resources don't have the implications tied to assets build on top of the protocol and major infrastructure tied to it.
  • @hodlencoinfield #8754 02:45 PM, 28 Nov 2023
    I think as time goes on the fact you’re building an indexer on an indexer is going to create more issues for you
  • @hodlencoinfield #8755 02:46 PM, 28 Nov 2023
    Just like bitcoin changes and counterparty reacts, as counterparty changes your additional stamp indexer will need to react
  • @reinamora_137 #8756 02:46 PM, 28 Nov 2023
    Correct. Next iterations will be moved to a lower level as we do with src-20 directly on bitcoin to avoid such problems. In the meantime we are relying on collaboration and understanding.
  • @hodlencoinfield #8757 02:48 PM, 28 Nov 2023
    So my understanding is this, correct if I’m wrong, you guys weren’t paying attention to counterparty development so this update took you by surprise, you don’t actually have concerns about the updates themselves but just the fact that there are updates
  • @hodlencoinfield #8758 02:49 PM, 28 Nov 2023
    Why don’t we take some time to go through the update?
  • @hodlencoinfield #8759 02:49 PM, 28 Nov 2023
    Do you have time right now?
  • @reinamora_137 #8760 02:49 PM, 28 Nov 2023
    Basically. All the basics of the upgrades sound great. Fully support them. Simply concerned about the high potential for a fork and wishing to avoid it. Now that we are more aware and getting familiar with the release updates I wouldn't anticipate this issue in the future.
  • @reinamora_137 #8761 02:54 PM, 28 Nov 2023
    not much time to get into it super details. but some overview of the consensus changing aspects and how it will impact potential indexing and nodes seeing these new transaction types is certainly helpful until I can rtfm in detail.

    I'd feel more comfortable with it as i get a node in plact to test an upgrade, run our index validate, and verify all of the other direct to cp database operations we have aren't impacted and then all good on my end. Just scrambling with some new hardware, personal, work, and stamps indexer moving into production and public release planned for this week is all.

    I trust the process flow will be improved for the next releases. I have not been comfortable pulling random updates from main without a release version.
  • Are you in the process of doing this?
  • @reinamora_137 #8763 03:00 PM, 28 Nov 2023
    hoping to clone an image of our production instance today and setup all the requirements today. things are just in mass disarray with the pending production migration on our end so I have the current and future code to validate. Major db cluster migrations, big api changes for v2. the list is massive. Just bad timing is all. Once I get everything in place confirming things are ok shouldn't take more than a few days.
  • @reinamora_137 #8764 03:00 PM, 28 Nov 2023
    it is being taken seriously. just not totally comfortable moving forward blindly.
  • @hodlencoinfield #8765 03:03 PM, 28 Nov 2023
    Might be prudent to delay your new release, there shouldn’t be anything in this update that breaks stamps, it’s all backward compatible in fact it fixes an issue where the current version is not backward compatible with callable assets
  • @reinamora_137 #8766 03:05 PM, 28 Nov 2023
    that is certainly being delayed there is just a lot of things that need to happen to prepare regardless. I'm optimistic it will be fine. It's simply a reqeust for deferral so I don't need to rush and move into unknown territory without testing. It's much simpler to just stay on the current release and not stress if the request cannot or will not be accomodated.
  • @reinamora_137 #8767 03:07 PM, 28 Nov 2023
    truthfully all the back and forth spending time explaining is frustrating for everyone i'm sure. I'd rather be focused on the matters at hand.

    It's just a "hey bro, can we get a little more time to suss out this code before going live as I'm not prepared at all"
  • @hodlencoinfield #8768 03:07 PM, 28 Nov 2023
    It’s just that we’ve announced an activation block and changing that is not without issue for everyone else that’s planning to activate, so we run into a situation where someone setup a node to activate and what happens if they’re not prepared to revert back to the current version
  • @hodlencoinfield #8769 03:08 PM, 28 Nov 2023
    I hope you can appreciate that your ask isn’t as simple as “just push it a couple days”
  • @hodlencoinfield #8770 03:09 PM, 28 Nov 2023
    Obviously if there is an issue with the update itself that needs to be addressed then we should do that
  • @reinamora_137 #8771 03:09 PM, 28 Nov 2023
    ok that's a very undertsandable response and i can live with that if key stakeholders don't have the time to revert of make delays. I'm not familiar with all the other pieces in play. That's really the feedback needed so we can decide how to proceed. I'd rather not find out issues after the fact is all.
  • @hodlencoinfield #8772 03:12 PM, 28 Nov 2023
    I really don’t think you’re going to run into any issues, jdog removed all the controversial changes (like separate data store and taproot address) for this update
  • @hodlencoinfield #8773 03:14 PM, 28 Nov 2023
    The great part about indexers (counterparty included) is that if there are bugs or issues that crop up then we simply get stuck at whatever the block height is until the issue is resolved and then just catch back up to the current block height
  • @hodlencoinfield #8774 03:16 PM, 28 Nov 2023
    We have had excellent uptime with jdog and Javier as custodians and jdog has no reason to introduce any issues because they’d directly affect xchain and freewallet and make his life more difficult
  • @6517313784 #8775 03:17 PM, 28 Nov 2023
    go into details please.
  • @hodlencoinfield #8776 03:18 PM, 28 Nov 2023
    All the details are laid out nicely in the PR
  • @hodlencoinfield #8777 03:18 PM, 28 Nov 2023
    With links and all
  • @6517313784 #8778 03:18 PM, 28 Nov 2023
    drop the link
  • @AryanJab ↶ Reply to #8778 #8779 03:18 PM, 28 Nov 2023
    Scroll up.
  • @6517313784 #8780 03:19 PM, 28 Nov 2023
    🙏
  • None
  • @hodlencoinfield #8783 03:20 PM, 28 Nov 2023
    Pinned for reference
  • @reinamora_137 #8784 03:32 PM, 28 Nov 2023
    I'll trust you're right. It's just not my modus operandi to push untested or rushed changes. Thanks for the understanding and chatting through it with me. I'll take it as it is with the planned upgrade. Will also be planning to get a full dev environment up so we can test updates to the dev branch in the future as well. Looking forward to getting more involved much earlier in the process.
  • @reinamora_137 #8785 03:33 PM, 28 Nov 2023
    being that we are only a couple days away. are nodes actively upgrading production now I assume?
  • @6517313784 #8786 03:33 PM, 28 Nov 2023
    how many active devs are there?
  • yep, i think it should hit the activation block on friday
  • @reinamora_137 #8788 03:34 PM, 28 Nov 2023
    for the stamps side there are two primary and 8 additinal devs involved with testing. Besides me there is only one other dev maintaining production CP nodes if the question was for me.
  • @hodlencoinfield #8789 03:36 PM, 28 Nov 2023
    yep we'll be moving to develop branch for changes going forward and will work to keep the process as transparent as possible so people dont get caught off guard
  • @raretruck #8790 04:52 PM, 28 Nov 2023
    Excited to see more devs stepping into lead roles and working together to move Counterparty forward 🫡
  • 30 November 2023 (1 messages)
  • @Pegasus0527 #8791 03:58 PM, 30 Nov 2023
    Joined.