Spaces:
Running
Running
Create .well-known/Stellar.toml
Browse files- .well-known/Stellar.toml +75 -0
.well-known/Stellar.toml
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
server {
|
2 |
+
|
3 |
+
server_name my.example.com;
|
4 |
+
root /var/www/my.example.com;
|
5 |
+
|
6 |
+
location = /.well-known/stellar.toml {
|
7 |
+
types { } default_type "text/plain; charset=utf-8";
|
8 |
+
allow all;
|
9 |
+
if ($request_method = 'OPTIONS') {
|
10 |
+
add_header 'Access-Control-Allow-Origin' '*';
|
11 |
+
add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
|
12 |
+
add_header 'Content-Length' 0;
|
13 |
+
return 204;
|
14 |
+
}
|
15 |
+
if ($request_method = 'GET') {
|
16 |
+
add_header 'Access-Control-Allow-Origin' '*';
|
17 |
+
add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
|
18 |
+
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
19 |
+
}
|
20 |
+
}
|
21 |
+
|
22 |
+
// CertBot SSL configuration
|
23 |
+
// ...
|
24 |
+
}
|
25 |
+
NETWORK_PASSPHRASE="Public Global Stellar Network ; September 2015"
|
26 |
+
FEDERATION_SERVER="https://api.domain.com/federation"
|
27 |
+
AUTH_SERVER="https://api.domain.com/auth"
|
28 |
+
TRANSFER_SERVER="https://api.domain.com"
|
29 |
+
SIGNING_KEY="GDR27YPRJIFVMUKNYLRQM3SSONTR67JOSS6377QK5KEVWUUAMEVCNBSH"
|
30 |
+
HORIZON_URL="https://horizon.domain.com"
|
31 |
+
ACCOUNTS=[
|
32 |
+
"GDVWPEOTJOPRT433PX6LULEPML5AN6QJO4GCFVFK43IPRQ23NPQAUSDF",
|
33 |
+
"GCFLUK4UK77337BRT6UGWP5UHYB73PSQ4HRACL6HJOQWH4GAKL4UX3RB"
|
34 |
+
]
|
35 |
+
VERSION="2.0.0"
|
36 |
+
|
37 |
+
[DOCUMENTATION]
|
38 |
+
ORG_NAME="Jaycee James"
|
39 |
+
ORG_DBA="N/A"
|
40 |
+
ORG_URL="https://t.me/MRJayceeBot"
|
41 |
+
ORG_LOGO=""
|
42 |
+
ORG_DESCRIPTION="MR. Jaycee bot"
|
43 |
+
ORG_PHYSICAL_ADDRESS="1901 Avenue of the Stars, Los Angeles, CA 90067, United States"
|
44 |
+
ORG_PHYSICAL_ADDRESS_ATTESTATION=""
|
45 |
+
ORG_PHONE_NUMBER="1 (310)-402-2678"
|
46 |
+
ORG_PHONE_NUMBER_ATTESTATION=""
|
47 |
+
ORG_KEYBASE=""
|
48 |
+
ORG_TWITTER=""
|
49 |
+
ORG_GITHUB=""
|
50 |
+
ORG_OFFICIAL_EMAIL=""
|
51 |
+
|
52 |
+
[[PRINCIPALS]]
|
53 |
+
name="Jaycee James "
|
54 |
+
email=""
|
55 |
+
keybase=""
|
56 |
+
twitter="jayceejames"
|
57 |
+
github=""
|
58 |
+
id_photo_hash=""
|
59 |
+
verification_photo_hash=""
|
60 |
+
|
61 |
+
[[CURRENCIES]]
|
62 |
+
code="JAYCEEJAMES"
|
63 |
+
issuer="GDR27YPRJIFVMUKNYLRQM3SSONTR67JOSS6377QK5KEVWUUAMEVCNBSH"
|
64 |
+
display_decimals=9
|
65 |
+
|
66 |
+
# asset with meta info
|
67 |
+
[[CURRENCIES]]
|
68 |
+
code="JAYCEEJAMES"
|
69 |
+
issuer="GDR27YPRJIFVMUKNYLRQM3SSONTR67JOSS6377QK5KEVWUUAMEVCNBSH"
|
70 |
+
display_decimals=9
|
71 |
+
name="JAYCEEJAMES"
|
72 |
+
desc="1 JAYCEEJAMES token entitles you to use MR. JAYCEE AI https://nowpayments.io/payment/?iid=5608760585"
|
73 |
+
conditions="Issuer has a burn policy and may mint additional tokens."
|
74 |
+
image=""
|
75 |
+
fixed_number=3135909
|