Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
H
Helm Charts for Minds Projects
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Helm Charts for Minds Projects
Compare Revisions
8fd5b13522249cb923a1587ae87daabc7fc1b263...0dd65ec08878680849d28cdfa9b0cfb0b2e7dbed
Source
0dd65ec08878680849d28cdfa9b0cfb0b2e7dbed
Select Git revision
...
Target
8fd5b13522249cb923a1587ae87daabc7fc1b263
Select Git revision
Compare
Commits (2)
(chore): Use Values for blockchain config
· 3d347cb7
Emiliano Balbuena
authored
5 hours ago
3d347cb7
Merge branch 'goal/blockchain-config-2' into 'sandbox-wip'
· 0dd65ec0
Mark Harding
authored
5 hours ago
(chore): Use Values for blockchain config See merge request
!3
0dd65ec0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
19 deletions
+45
-19
configMap.yaml
minds/templates/configMap.yaml
+23
-19
values.yaml
minds/values.yaml
+22
-0
No files found.
minds/templates/configMap.yaml
View file @
0dd65ec0
...
...
@@ -355,50 +355,54 @@ data:
// Blockchain configurations
$CONFIG->set('blockchain', [
'sale' => 'sale',
'testnet' =>
false
,
'testnet' =>
{{ .Values.blockchain.testNet }}
,
'rpc_endpoints' => [
'
https://mainnet.infura.io/v3/708b51690a43476092936f9818f8c4fa
',
'
{{ .Values.blockchain.blockchainEndpoint }}
',
],
//'network_address' => 'https://rinkeby.infura.io/',
'proxy_rpc_endpoint' => '
https://mainnet.infura.io/v3/708b51690a43476092936f9818f8c4fa
',
'proxy_rpc_endpoint' => '
{{ .Values.blockchain.blockchainEndpoint }}
',
'client_network' =>
1
, // 1 = main ethereum network; 4 = test rinkeby; 1337 coin repo's testserver.sh
'client_network' =>
{{ .Values.blockchain.clientNetwork }}
, // 1 = main ethereum network; 4 = test rinkeby; 1337 coin repo's testserver.sh
'default_gas_price' => 40,
'server_gas_price' => 40,
'token_symbol' => 'status',
'token_address' => '
0xb26631c6dda06ad89b93c71400d25692de89c068
',
'token_address' => '
{{ .Values.blockchain.tokenAddress }}
',
'contracts' => [
'token_sale_event' => [
'contract_address' => '
0xf3c9dbb9598c21fe64a67d0586adb5d6eb66bc63
',
'wallet_address' => '
0x1820fFAD63fD64d7077Da4355e9641dfFf4DAD0d
',
'wallet_pkey' => '',
'contract_address' => '
{{ .Values.blockchain.tseAddress }}
',
'wallet_address' => '
{{ .Values.blockchain.tseWallet }}
',
'wallet_pkey' => '
{{ .Values.blockchain.tseWalletKey }}
',
'eth_rate' => 2000, //1 ETH = 2,000 TOKENS
'auto_issue_cap' => "120000000000000000000000", //60ETH (120,000 tokens) $30,000 USD
],
'withdraw' => [
'contract_address' => '
0xdd10ccb3100980ecfdcbb1175033f0c8fa40548c
',
'wallet_address' => '
0x14E421986C5ff2951979987Cdd82Fa3C0637D569
',
'wallet_pkey' => '',
'contract_address' => '
{{ .Values.blockchain.withdrawAddress }}
',
'wallet_address' => '
{{ .Values.blockchain.withdrawWallet }}
',
'wallet_pkey' => '
{{ .Values.blockchain.withdrawWalletKey }}
',
'limit_exemptions' => [
],
],
'bonus' => [
'wallet_address' => '
0x461f1C5768cDB7E567A84E22b19db0eABa069BaD
',
'wallet_pkey' => '',
'wallet_address' => '
{{ .Values.blockchain.bonusWallet }}
',
'wallet_pkey' => '
{{ .Values.blockchain.bonusWalletKey }}
',
],
'boost' => [
'contract_address' => '
0x112ca67c8e9a6ac65e1a2753613d37b89ab7436b
',
'wallet_address' => '
0xdd04D9636F1944FE24f1b4E51Ba77a6CD23b6fE3
',
'wallet_pkey' => '',
'contract_address' => '
{{ .Values.blockchain.boostAddress }}
',
'wallet_address' => '
{{ .Values.blockchain.boostWallet }}
',
'wallet_pkey' => '
{{ .Values.blockchain.boostWalletKey }}
',
],
'wire' => [
'contract_address' => '0x4b637bba81d24657d4c6acc173275f3e11a8d5d7',
'wallet_address' => '0x4CDc1C1fd1A3F4DD63231afF8c16501BcC11Df95',
'wallet_pkey' => '',
'contract_address' => '{{ .Values.blockchain.wireAddress }}',
'wallet_address' => '{{ .Values.blockchain.wireWallet }}',
'wallet_pkey' => '{{ .Values.blockchain.wireWalletKey }}',
],
'boost_campaigns' => [
'wallet_address' => '{{ .Values.blockchain.boostCampaignsWallet }}',
'wallet_pkey' => '{{ .Values.blockchain.boostCampaignsWalletKey }}',
],
],
...
...
This diff is collapsed.
Click to expand it.
minds/values.yaml
View file @
0dd65ec0
...
...
@@ -203,3 +203,25 @@ encryptionKeys:
aws
:
snsSecret
:
blockchain
:
testNet
:
clientNetwork
:
blockchainEndpoint
:
tokenAddress
:
tseAddress
:
tseWallet
:
tseWalletKey
:
withdrawAddress
:
withdrawWallet
:
withdrawWalletKey
:
bonusWallet
:
bonusWalletKey
:
boostAddress
:
boostWallet
:
boostWalletKey
:
wireAddress
:
wireWallet
:
wireWalletKey
:
boostCampaignsWallet
:
boostCampaignsWalletKey
:
This diff is collapsed.
Click to expand it.