Fecha: [Fecha actual]
Entre:
Parte A: [Tu nombre] Parte B: [Nombre de la 2da Parte]
| { | |
| "name": "Muntrume PIT Token", | |
| "symbol": "PIT", | |
| "description": "Muntrume Motorsport PIT Token", | |
| "image": "https://imgur.com/w1HaIuO" | |
| } |
| SELECT | |
| p.ID as order_id, | |
| p.post_date, | |
| max( CASE WHEN pm.meta_key = '_billing_email' and p.ID = pm.post_id THEN pm.meta_value END ) as Email, | |
| max( CASE WHEN pm.meta_key = '_shipping_first_name' and p.ID = pm.post_id THEN pm.meta_value END ) as 'First Name', | |
| max( CASE WHEN pm.meta_key = '_shipping_last_name' and p.ID = pm.post_id THEN pm.meta_value END ) as 'Last Name', | |
| max( CASE WHEN pm.meta_key = '_shipping_address_1' and p.ID = pm.post_id THEN pm.meta_value END ) as 'Default Address Address1', | |
| max( CASE WHEN pm.meta_key = '_shipping_address_2' and p.ID = pm.post_id THEN pm.meta_value END ) as 'Default Address Address2', | |
| max( CASE WHEN pm.meta_key = '_shipping_city' and p.ID = pm.post_id THEN pm.meta_value END ) as 'Default Address City', | |
| max( CASE WHEN pm.meta_key = '_shipping_state' and p.ID = pm.post_id THEN pm.meta_value END ) as 'Default Address Province Code', |
| import { | |
| Keypair, | |
| NONCE_ACCOUNT_LENGTH, | |
| SystemProgram, | |
| TransactionMessage, | |
| VersionedTransaction | |
| } from "@solana/web3.js"; | |
| class AccHelper { | |
| /** |
| /** | |
| * Generates a DID identifier using the owner's public key, method, and program ID. | |
| * @param {string} authorityPublicKey - The owner's public key. | |
| * @returns {string} - The generated DID identifier. | |
| * https://g.identity.com/sol-did/#identifier-generation-method | |
| */ | |
| import bs58 from 'bs58'; | |
| async function generateDIDIdentifier(authorityPublicKey) { | |
| let seed = 256; |
| <template> | |
| <div> | |
| <label for="password">Enter Password:</label> | |
| <input type="password" id="password" v-model="password" @input="checkPassword"> | |
| <div v-if="password"> | |
| <p>Password Strength: {{ strength }}</p> | |
| <div :class="['strength-meter', 'level-' + strengthLevel]"></div> | |
| </div> | |
| </div> | |
| </template> |
| { | |
| "name": "Costa Rica CRC Digital", | |
| "symbol": "CRCD", | |
| "description": "Digital CRC backed by fiat CRC 1:1 - Stable", | |
| "image": "https://node1.irys.xyz/-fvLT_p5So8HgBMpbKnZGYL7LaEzLAI01eX3eGAFVtE" | |
| } |
| import { createCampaign, dashboard, logout, payment, profile, withdraw } from '../assets'; | |
| export const navlinks = [ | |
| { | |
| name: 'dashboard', | |
| imgUrl: dashboard, | |
| link: '/', | |
| }, | |
| { | |
| name: 'campaign', |
| // Top 8 Scary Smart Contract Hacks They Use to Exploit Your DApp [+Video] | |
| // https://blog.finxter.com/top-8-scary-smart-contract-hacks-that-exploit-your-dapp-video/ | |
| /* | |
| Ownership Exploit | |
| Private Variable Exploit | |
| Reentrancy Attack | |
| tx.origin Phishing Attack | |
| Denial of Service Attack |
| FROM python:3.9 | |
| WORKDIR /app/backend | |
| COPY backend/requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY backend/ . | |
| EXPOSE 8000 | |
| CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] |