-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Store Cryptobot images to IPFS, and token metadata (#214)
* progress on saving image to bot metadata * storing bot image to token metadata, 90% done. * feat: update contract to edonet * feat: implement api endpoint for uploading json * feat: update indexer logic Co-authored-by: Bhaskar Singh <[email protected]>
- Loading branch information
1 parent
1e52a73
commit 8662902
Showing
6 changed files
with
173 additions
and
90 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,6 +1,9 @@ | ||
import { NetworkType } from '@airgap/beacon-sdk'; | ||
// NetworkType.DELPHINET : NetworkType.MAINNET; | ||
export const APP_NAME = 'Cryptocodeschool'; | ||
|
||
// allowed: 'mainnet', 'carthagenet', 'labnet' or 'sandbox'(http://localhost:8732) https://delphinet.smartpy.io | ||
export const NETWORK = 'delphinet'; | ||
export const NETWORK = NetworkType.EDONET; | ||
export const INDEXER_NETWORK = 'edo2net'; | ||
|
||
export const CONTRACT_ADDRESS = 'KT19XZU3pRi6fd1dZinsXDGoKe2QdrU9ePjk'; | ||
export const CONTRACT_ADDRESS = 'KT1CTXcSov9xMmQjrKYw5KYP9BbB4v8SqrkQ'; |
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
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
Oops, something went wrong.