Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanzhelyazkov committed Oct 6, 2022
0 parents commit eb1a833
Show file tree
Hide file tree
Showing 49 changed files with 51,752 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ALCHEMY_KEY=
ETHERSCAN_API_KEY=
DEPLOYER_PRIVATE_KEY=
ADMIN_PRIVATE_KEY=
ADMIN_2_PRIVATE_KEY=
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.vscode/
node_modules/
cache/
artifacts/
coverage/

coverage.json

.DS_Store


.env
3 changes: 3 additions & 0 deletions .solcover.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
skipFiles: ["interfaces", "test", "mock", "proxies/TransparentUpgradeableProxy.sol"],
};
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Origination Terminal

# Description

## Interface for creating and managing token sale listings

Projects can use the Origination Terminal to create a token listing and select any number of sale options, such as
specifying vesting terms, whitelisting addresses, a reserve amount, a sliding price scale (ascending and descending).

Listings created through this interface will pay a small fee for the listing, and a small percentage for any token sale.

# Development instructions

--- Run **npm i** beforehand ---
--- cp .env.example .env and set up the variables ---

To compile:
**npx hardhat compile**
To run tests:
**npx hardhat test**
Binary file added audits/ABDK_xToken_Origination_v_1_0.pdf
Binary file not shown.
Loading

0 comments on commit eb1a833

Please sign in to comment.