-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from eqlabs/latenssi/merge-onflow-main
Merge onflow main
- Loading branch information
Showing
52 changed files
with
5,744 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,32 @@ | ||
ACCESS_API_HOST=localhost:3569 | ||
ADMIN_ADDRESS=0xf8d6e0586b0a20c7 | ||
ADMIN_PRIVATE_KEY=91a22fbd87392b019fbe332c32695c14cf2ba5b6521476a8540228bdf1987068 | ||
|
||
DATABASE_DSN=postgresql://postgres:postgres@localhost:5432/postgres | ||
DATABASE_TYPE=psql | ||
DATABASE_DSN=postgresql://wallet:wallet@localhost:5432/wallet | ||
|
||
ADMIN_ADDRESS=0xf8d6e0586b0a20c7 | ||
ADMIN_PRIVATE_KEY=be44c2dfdf72fdcc8da80d19dbedb0257042de28ceeea1836599a90d2c19a0da | ||
# emulator | ||
ACCESS_API_HOST=localhost:3569 | ||
CHAIN_ID=flow-emulator | ||
|
||
# testnet | ||
# ACCESS_API_HOST=access.testnet.nodes.onflow.org:9000 | ||
# CHAIN_ID=flow-testnet | ||
|
||
# mainnet | ||
# ACCESS_API_HOST=access.mainnet.nodes.onflow.org:9000 | ||
# CHAIN_ID=flow-mainnet | ||
|
||
# When set to "local", private keys are generated by the API | ||
# and stored as encrypted text in the database. | ||
DEFAULT_KEY_TYPE=local | ||
ENCRYPTION_KEY= | ||
|
||
ENABLED_TOKENS=FlowToken:0x0ae53cb6e3f42a79:flowToken,FUSD:0xf8d6e0586b0a20c7:fusd | ||
# This symmetrical key is used to encrypt private keys | ||
# that are stored in the database. | ||
ENCRYPTION_KEY=faae4ed1c30f4e4555ee3a71f1044a8e | ||
|
||
ENABLED_TOKENS=FUSD:0xf8d6e0586b0a20c7:fusd,FlowToken:0x0ae53cb6e3f42a79:flowToken | ||
|
||
# This sets the number of proposal keys to be used on the admin account. | ||
# You can increase transaction throughput by using multiple proposal keys for | ||
# parallel transaction execution. | ||
ADMIN_PROPOSAL_KEY_COUNT=50 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ADMIN_ADDRESS=0xf8d6e0586b0a20c7 | ||
ADMIN_PRIVATE_KEY=91a22fbd87392b019fbe332c32695c14cf2ba5b6521476a8540228bdf1987068 | ||
|
||
ACCESS_API_HOST=localhost:3569 | ||
CHAIN_ID=flow-emulator | ||
|
||
# When set to "local", private keys are generated by the API | ||
# and stored as encrypted text in the database. | ||
DEFAULT_KEY_TYPE=local | ||
|
||
# This symmetrical key is used to encrypt private keys | ||
# that are stored in the database. | ||
ENCRYPTION_KEY=faae4ed1c30f4e4555ee3a71f1044a8e | ||
|
||
ENABLED_TOKENS=FUSD:0xf8d6e0586b0a20c7:fusd,FlowToken:0x0ae53cb6e3f42a79:flowToken | ||
|
||
ADMIN_PROPOSAL_KEY_COUNT=100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Copyright 2021 Equilibrium, OnFlow | ||
|
||
This project is licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use the material in produced by this project except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
Oops, something went wrong.