Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions EREBRUS_NFT/Move.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "init"
name = "erberus"
version = "1.0.0"
authors = []

[dependencies.AptosFramework]
git = 'https://github.com/aptos-labs/aptos-core.git'
Expand All @@ -14,7 +13,7 @@ rev = 'main'
subdir = 'aptos-move/framework/aptos-token-objects'

[addresses]
admin = ""
admin = "0x6299daec2e0c0e0f8c0f824bd91290286af7d709375b4c9593858d49a2227a40"
VSEED = ""
wv1 = ""
std = "0x1"
Expand Down
20 changes: 20 additions & 0 deletions EREBRUS_SEOUL_NFT/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "erberus_seoul"
version = "1.0.0"

[dependencies.AptosFramework]
git = 'https://github.com/aptos-labs/aptos-core.git'
rev = 'main'
subdir = 'aptos-move/framework/aptos-framework'

[dependencies.AptosTokenObjects]
git = 'https://github.com/aptos-labs/aptos-core.git'
rev = 'main'
subdir = 'aptos-move/framework/aptos-token-objects'

[addresses]
admin = ""
VSEED = ""
wv1 = ""
std = "0x1"
aptos_token_objects ="0x4"
58 changes: 58 additions & 0 deletions EREBRUS_SEOUL_NFT/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# EREBRUS
Smart Contract for the EREBRUS NFT with supply of 111.

Where decentralization meets VPN for ultimate internet security.
Anonymous Virtual Private Network for accessing internet in stealth mode bypassing filewalls and filters

To be deployed to testnet under contract address:

Entry Functions:
- user_mint
- delegate_mint

View Functions:
- total_minted_NFTs: Total NFTs minted so far
- owner_of: Accepts tokenId to tell who is its owner

Events:
- NftMintedEvent


## Usage

To use this smart contract, follow these steps:

1. Compile the Move code:
```
aptos init
```
3. Compile the Move code:
```
aptos move compile
```

2. Publish the compiled package:
```
aptos move publish
```

### Customizing the EREBRUS Token

To modify the EREBRUS token properties, you need to edit the `erebrus.move` file. Look for the following constants and update them as needed:

- `COLLECTION_NAME`
- `COLLECTION_DESCRIPTION`
- `COLLECTION_URI`
- `TOKEN_DESCRIPTION`
- `TOKEN_URI`

Make sure to recompile and republish the contract after making any changes.




## Revisions:
### 1.0.1:
### 1.0.2:
### 1.0.3:
- Deployed on mainnet under contract address:
Loading