-
Notifications
You must be signed in to change notification settings - Fork 4
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 #239 from Itheum/stg
1.8.0 STG -> MAIN
- Loading branch information
Showing
21 changed files
with
3,662 additions
and
5,582 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,47 @@ | ||
import { EnvironmentsEnum } from "libs/types"; | ||
|
||
export const IS_DEVNET = process.env.REACT_APP_ENV_NETWORK && process.env.REACT_APP_ENV_NETWORK === EnvironmentsEnum.devnet; | ||
|
||
export type app_token = { | ||
tokenIdentifier: string; | ||
nonce: number; | ||
}; | ||
|
||
export const TRAILBLAZER_TOKENS: app_token[] = IS_DEVNET | ||
? [ | ||
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 1 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 423 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 453 }, | ||
] | ||
: [{ tokenIdentifier: "DATANFTFT-e936d4", nonce: 1 }]; | ||
export const MULTIVERSX_BUBBLE_TOKENS: app_token[] = IS_DEVNET | ||
? [ | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 416 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 491 }, | ||
] | ||
: [{ tokenIdentifier: "DATANFTFT-e936d4", nonce: 2 }]; | ||
export const MULTIVERSX_INFOGRAPHICS_TOKENS: app_token[] = IS_DEVNET | ||
? [ | ||
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 3 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 476 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 480 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 490 }, | ||
] | ||
: [{ tokenIdentifier: "DATANFTFT-e936d4", nonce: 3 }]; | ||
export const NF_TUNES_TOKENS: app_token[] = IS_DEVNET | ||
? [ | ||
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 2 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 529 }, | ||
] | ||
: [{ tokenIdentifier: "DATANFTFT-e936d4", nonce: 4 }]; | ||
export const PLAYSTATION_GAMER_PASSPORT_TOKENS: app_token[] = [ | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 379 }, | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 380 }, | ||
]; | ||
export const ESDT_BUBBLE_TOKENS: app_token[] = [ | ||
// { tokenIdentifier: "DATANFTFT-e0b917", nonce: 417 } | ||
]; | ||
|
||
export const SUPPORTED_APPS = IS_DEVNET | ||
? ["itheumtrailblazer", "multiversxbubbles", "esdtBubble", "playstationgamerpassport", "multiversxinfographics", "nftunes"] | ||
: ["itheumtrailblazer", "multiversxbubbles", "multiversxinfographics", "nftunes"]; |
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.