Note: Uses Counterparty send message type ID = 0
-
Inputs:
- Input 1: 546 satoshis (from Party A's address).
-
Outputs:
- Output 1: 546 satoshis intended for Party B's address which becomes asset recipient (address is alterable).
//images are at "https://arweave.net/"+rarePepes[i].arweave | |
const rarePepes = [{'asset': 'BABERUTHPEPE', 'arweave': 'dzQFZGbYSWKw2OaDItQf3HRjiwwOJGVh76Z1eN4KWCU'}, {'asset': 'BACHELORPEPE', 'arweave': 'wCqtidB6yDEbHJVtRQO7HG63YOGCxrL7MrVNP3JI2IU'}, {'asset': 'BACKPAGEPEPE', 'arweave': 'FgmuiVZalXvZ9c8DdvVUj0plgtXIKCaIedDtESXtwB0'}, {'asset': 'BACKTOPEPE', 'arweave': 'VivrBJwhBwmNVjW_m1JY7G-RRm1JpACqkAYChkUYjmo'}, {'asset': 'BADASSPEPE', 'arweave': 'FLUK5D8m5JQ-RfRVbFMzaBsH-kvELb88jBWWQsvulz0'}, {'asset': 'BADHAIRDAY', 'arweave': 'eA_bLSURNNpSg-Xnqp8FerArsYuajAzhJNScMgMAbP0'}, {'asset': 'BADLTPEPE', 'arweave': 'qypVBLVjavnTti9sGbOVfO6dePmRRZPeKNEPRdn_fr0'}, {'asset': 'BADWISHES', 'arweave': 'gs9w_7iS7pTbWGJ_iAkespId7gIc2d907NYpgvflVR4'}, {'asset': 'BAGHOLDRPEPE', 'arweave': 'KSTEX_PEHuq3EOxGRg97jIGhYVAVec3Eq7IHTKVgrJE'}, {'asset': 'BANANAPEPE', 'arweave': 'QLHdFxkrQYCqsWfwudPoS8jUksHKi4D8P7vju34Qd7Q'}, {'asset': 'BANDAGEDPEPE', 'arweave': 'aekOK8Pqr18Fm19MklUzbYOiazJWucqgpoXJCP6gR-I'}, {'asset': 'BANEPEPE', ' |
<?php | |
namespace JsonRPC; | |
use Exception; | |
use BadFunctionCallException; | |
use InvalidArgumentException; | |
use RuntimeException; | |
class ConnectionFailureException extends Exception {}; | |
class ServerErrorException extends Exception {}; | |
/** | |
* JsonRPC client class |
import os | |
import requests | |
import json | |
import subprocess | |
from bitcoin.core import b2lx, b2x, CBlock | |
from bitcoin.core.script import OP_RETURN, CScript | |
from Crypto.Cipher import ARC4 | |
def read_cookie_file(cookie_file_path): |
from PIL import Image, ImageDraw | |
import math | |
import numpy as np | |
# Load input image | |
input_image = Image.open("brick.png") | |
# Create blank output image | |
output_image = Image.new("RGB", (1200, 1200), "white") |
from PIL import Image | |
import random | |
# Load the input image and convert it to RGBA mode | |
input_image = Image.open("input_image.png").convert("RGBA") | |
# Calculate the size of each grid cell based on the input image size | |
cell_width = 200 | |
cell_height = 200 |
import { encrypt, decrypt } from 'eciesjs' | |
var bitcoinjs = require('bitcoinjs-lib') | |
let aliceKeyPriv = bitcoinjs.ECPair.fromWIF("5KAHnHT2x4XMFnjVZZJNkbmDKB8qtTZrqmotNwe4F8g31nvnpTN").privateKey | |
let aliceKeyPub = bitcoinjs.ECPair.fromWIF("5KAHnHT2x4XMFnjVZZJNkbmDKB8qtTZrqmotNwe4F8g31nvnpTN").publicKey | |
let data = Buffer.from('this is a test') | |
let final = decrypt(aliceKeyPriv, encrypt(aliceKeyPub, data)).toString() | |
console.log(final) |
01-01-2021,663945 | |
01-01-2021,663946 | |
01-01-2021,663947 | |
01-01-2021,663948 | |
01-01-2021,663949 | |
01-01-2021,663950 | |
01-01-2021,663951 | |
01-01-2021,663952 | |
01-01-2021,663953 | |
01-01-2021,663954 |
<?php | |
header('Content-Type: application/json'); | |
require 'includes/Client.php'; | |
use JsonRPC\Client; | |
$cp_server = 'http://public.coindaddy.io:4000/api/'; | |
$cp_user = 'rpc'; | |
$cp_password = '1234'; |
var express = require('express'); | |
var app = express(); | |
var port = process.env.PORT || 8080; | |
var Message = require('bitcore-message'); | |
//var mysql = require('mysql'); | |
// start the server | |
app.listen(port); |