Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,15 @@ CARDANO_WALLET_SEED=
CARDANO_GATEWAY_URL=
CARDANO_API_URL=

CITREA_WALLET_ADDRESS=
CITREA_WALLET_PRIVATE_KEY=
CITREA_API_KEY=
CITREA_BLOCKSCOUT_API_URL=https://api.citreascan.com

CITREA_TESTNET_WALLET_ADDRESS=
CITREA_TESTNET_WALLET_PRIVATE_KEY=
CITREA_TESTNET_API_KEY=
CITREA_TESTNET_GOLDSKY_SUBGRAPH_URL=https://api.goldsky.com/api/public/project_xyz/subgraphs/citrea-transfers/1.0.0/gn
CITREA_TESTNET_BLOCKSCOUT_API_URL=https://api.testnet.citreascan.com

ZCHF_GRAPH_URL=https://api.thegraph.com/subgraphs/name/frankencoin-zchf/frankencoin-subgraph
ZCHF_CONTRACT_ADDRESS=0xB58E61C3098d85632Df34EecfB899A1Ed80921cB
Expand All @@ -221,6 +226,9 @@ ZCHF_FPS_WRAPPER_CONTRACT_ADDRESS=
DEURO_GRAPH_URL=
DEURO_API_URL=

JUSD_GRAPH_URL=
JUSD_API_URL=

EBEL2X_CONTRACT_ADDRESS=

COIN_GECKO_API_KEY=
Expand Down
24 changes: 24 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@
},
"dependencies": {
"@arbitrum/sdk": "^3.7.3",
"@buildonspark/spark-sdk": "^0.3.5",
"@azure/storage-blob": "^12.29.1",
"@blockfrost/blockfrost-js": "^6.1.0",
"@buildonspark/spark-sdk": "^0.3.5",
"@cardano-foundation/cardano-verify-datasignature": "^1.0.11",
"@deuro/eurocoin": "^1.0.16",
"@dhedge/v2-sdk": "^1.11.1",
"@emurgo/cardano-serialization-lib-nodejs": "^15.0.3",
"@eth-optimism/sdk": "^3.3.3",
"@frankencoin/zchf": "^0.2.36",
"@juicedollar/jusd": "^3.0.1",
"@maticnetwork/maticjs": "^3.9.6",
"@maticnetwork/maticjs-ethers": "^1.1.0",
"@nestjs-modules/mailer": "^1.11.2",
Expand Down
4 changes: 2 additions & 2 deletions src/config/chains.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ export const EVM_CHAINS = {
},
citreaTestnet: {
chainId: 5115,
gatewayUrl: 'http://10.0.1.6:8085',
gatewayUrl: 'https://rpc.testnet.citreascan.com',
},
citrea: {
chainId: 4114,
gatewayUrl: 'http://10.0.1.6:8085',
gatewayUrl: 'https://rpc.citreascan.com',
},
} satisfies Record<string, EvmChainStaticConfig>;

Expand Down
7 changes: 6 additions & 1 deletion src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,7 @@ export class Configuration {
citreaWalletAddress: process.env.CITREA_WALLET_ADDRESS,
citreaWalletPrivateKey: process.env.CITREA_WALLET_PRIVATE_KEY,
citreaApiKey: process.env.CITREA_API_KEY,
blockscoutApiUrl: process.env.CITREA_BLOCKSCOUT_API_URL,
},
citreaTestnet: {
...EVM_CHAINS.citreaTestnet,
Expand All @@ -812,7 +813,7 @@ export class Configuration {
citreaTestnetWalletAddress: process.env.CITREA_TESTNET_WALLET_ADDRESS,
citreaTestnetWalletPrivateKey: process.env.CITREA_TESTNET_WALLET_PRIVATE_KEY,
citreaTestnetApiKey: process.env.CITREA_TESTNET_API_KEY,
goldskySubgraphUrl: process.env.CITREA_TESTNET_GOLDSKY_SUBGRAPH_URL,
blockscoutApiUrl: process.env.CITREA_TESTNET_BLOCKSCOUT_API_URL,
},
lightning: {
lnbits: {
Expand Down Expand Up @@ -914,6 +915,10 @@ export class Configuration {
graphUrl: process.env.DEURO_GRAPH_URL,
apiUrl: process.env.DEURO_API_URL,
},
juice: {
graphUrl: process.env.JUSD_GRAPH_URL,
apiUrl: process.env.JUSD_API_URL,
},
realunit: {
graphUrl: process.env.REALUNIT_GRAPH_URL,
api: {
Expand Down
6 changes: 6 additions & 0 deletions src/integration/blockchain/blockchain.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ import { ArweaveModule } from './arweave/arweave.module';
import { BlockchainApiModule } from './api/blockchain-api.module';
import { BaseModule } from './base/base.module';
import { BscModule } from './bsc/bsc.module';
import { CitreaModule } from './citrea/citrea.module';
import { CitreaTestnetModule } from './citrea-testnet/citrea-testnet.module';
import { DEuroModule } from './deuro/deuro.module';
import { Ebel2xModule } from './ebel2x/ebel2x.module';
import { JuiceModule } from './juice/juice.module';
import { EthereumModule } from './ethereum/ethereum.module';
import { FrankencoinModule } from './frankencoin/frankencoin.module';
import { GnosisModule } from './gnosis/gnosis.module';
Expand Down Expand Up @@ -50,12 +52,14 @@ import { ZanoModule } from './zano/zano.module';
ZanoModule,
FrankencoinModule,
DEuroModule,
JuiceModule,
Ebel2xModule,
ArweaveModule,
RailgunModule,
SolanaModule,
TronModule,
CardanoModule,
CitreaModule,
CitreaTestnetModule,
RealUnitBlockchainModule,
Eip7702DelegationModule,
Expand All @@ -78,11 +82,13 @@ import { ZanoModule } from './zano/zano.module';
ZanoModule,
FrankencoinModule,
DEuroModule,
JuiceModule,
Ebel2xModule,
RailgunModule,
SolanaModule,
TronModule,
CardanoModule,
CitreaModule,
CitreaTestnetModule,
CryptoService,
BlockchainRegistryService,
Expand Down
Loading
Loading