+
+
+ {`ROCKET: ${rocket.Name().toUpperCase()}`}
+
+ {#if rocket.Testnet()}
+ {
+ dev = true;
+ alert(
+ 'dev mode enabled, refresh page if this was unintentional or you may lose sats'
+ );
+ }}>TESTNET
+ {/if}
+
+
+
+
+
+ Seller
+ AMR
+ Merits
+ Current Price (sats)
+ Status
+ Receiving Address
+
+
+
+
+ {#each amr as p (p.AMRIDs)}
+
+
+ {p.AMRIDs.length > 1 ? 'multiple' : p.AMRIDs[0].substring(0, 12)}
+ {p.Merits}
+ {p.Merits}
+ {p.Status(rocket, $bitcoinTip.height, transactions.get(p.RxAddress))}
+ {
+ console.log(transactions.get(p.RxAddress)?.From());
+ }}>{p.RxAddress}
+ {#if p.Status(rocket, $bitcoinTip.height, transactions.get(p.RxAddress)) == 'OPEN' && (!rocket.Testnet() || dev)}
+ {/if}
+
+ {/each}
+
+
+
+