-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathenvironments.toml
More file actions
97 lines (80 loc) · 3.48 KB
/
environments.toml
File metadata and controls
97 lines (80 loc) · 3.48 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
### Development environment configuration
[development.network]
rpc-url = "http://localhost:8000/rpc"
network-passphrase = "Standalone Network ; February 2017"
run-locally = true # automatically start the local network container, if not already running
[[development.accounts]]
name = "me" # Required. Keys for this account will be saved to `./.stellar/identity`
default = true # Optional. Whether to use this account as the `--source` for commands that need one.
[development.contracts]
# USDC test token for local development - deployed as a Stellar Asset Contract
usdc_test_token = { client = true, constructor_args = "--admin me --initial_supply 1000000000000000" }
[development.contracts.learn_token]
client = true
constructor_args = "--admin me"
[development.contracts.governance_token]
client = true
constructor_args = "--admin me"
[development.contracts.scholar_nft]
client = true
constructor_args = "--admin me"
[development.contracts.course_milestone]
client = true
constructor_args = "--admin me"
[development.contracts.scholarship_treasury]
client = true
constructor_args = "--admin me"
[development.contracts.milestone_escrow]
client = true
constructor_args = "--admin me --treasury me"
# Coming Soon: Specify live contracts to bind & import in this project using the given name.
# During initialization, these contracts will also be "spooned" into the development network,
# meaning that their data will match the live network at the given sequence number.
# [development.contracts.eurc]
# environment = "production"
# address = "C..."
# at-ledger-sequence = 50153603
### Staging environment configuration
[staging.network]
rpc-url = "https://soroban-testnet.stellar.org"
network-passphrase = "Test SDF Network ; September 2015"
[[staging.accounts]]
name = "testnet-user"
default = true
[staging.contracts]
# soroban-atomic-swap-contract = { id = "C123..." }
# soroban-auth-contract = { id = "C234..." }
# soroban-errors-contract = { id = "C345..." }
# soroban-hello-world-contract = { id = "C456..." }
# soroban-increment-contract = { id = "C567..." }
# soroban-token-contract = { id = "C678..." }
# eurc = { id = "C789..." }
learn_token = { id = "C..." }
governance_token = { id = "C..." }
scholar_nft = { id = "C..." }
course_milestone = { id = "C..." }
scholarship_treasury = { id = "C..." }
milestone_escrow = { id = "C..." }
# USDC on Stellar Testnet
# For testnet, we use a test USDC token deployed as a Stellar Asset Contract
# Official Circle USDC mainnet: CCW67TSZV3SSS2HXMBQ5JFGCKJNXKZM7UQUWUZPUTHXSTZLEO7SJMI75
# Testnet USDC (to be deployed): Use the fungible_allowlist contract as a test USDC token
usdc_testnet = { client = true, constructor_args = "--admin testnet-user --manager testnet-user --initial_supply 1000000000000000" }
### Production environment configuration
[production.network]
rpc-url = "https://our-custom-rpc-provider.cool"
network-passphrase = "Public Global Stellar Network ; September 2015"
[[production.accounts]]
name = "official-team-account"
default = true
[production.contracts]
# soroban-atomic-swap-contract = { id = "C987..." }
# soroban-auth-contract = { id = "C876..." }
# soroban-errors-contract = { id = "C765..." }
# soroban-hello-world-contract = { id = "C654..." }
# soroban-increment-contract = { id = "C543..." }
# soroban-token-contract = { id = "C432..." }
# eurc = { id = "C321..." }
# Official Circle USDC on Stellar Mainnet
# Contract ID: CCW67TSZV3SSS2HXMBQ5JFGCKJNXKZM7UQUWUZPUTHXSTZLEO7SJMI75
usdc_mainnet = { id = "CCW67TSZV3SSS2HXMBQ5JFGCKJNXKZM7UQUWUZPUTHXSTZLEO7SJMI75" }