-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 1.24 KB
/
.env.example
File metadata and controls
37 lines (28 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# BIP39 mnemonic for wallet operations (from create-wallet.mjs output)
PLATFORM_MNEMONIC='your mnemonic phrase goes here ...'
# Network to connect to: testnet or mainnet
NETWORK='testnet'
# DATA_CONTRACT_ID comes from contract-register-minimal.mjs output
# Used by document and contract-update tutorials
DATA_CONTRACT_ID=''
# RECIPIENT_ID is an identity ID for credit transfer tutorials
RECIPIENT_ID=''
# RECIPIENT_PLATFORM_ADDRESS is a bech32m platform address (tdash1...) for send-funds tutorial
RECIPIENT_PLATFORM_ADDRESS=''
# WITHDRAWAL_ADDRESS is a Core chain address for credit withdrawal tutorials
WITHDRAWAL_ADDRESS=''
# DOCUMENT_ID is the ID of a document (from document-submit.mjs output)
# Used for document-update and document-delete tutorials
DOCUMENT_ID=''
# DISABLE_KEY_ID is the public key ID to permanently disable (from identity key list)
# ⚠️ Disabling a key is irreversible
DISABLE_KEY_ID=''
# NAME_LABEL is an optional username label for name registration (without .dash)
NAME_LABEL=''
# NFT Variables
# NFT_CONTRACT_ID comes from contract-register-nft.mjs output
NFT_CONTRACT_ID=''
# NFT_DOCUMENT_ID comes from nft-create output
NFT_DOCUMENT_ID=''
# NFT_PRICE is the listing price in credits for marketplace operations
NFT_PRICE=1000