Skip to content

Commit

Permalink
Merge pull request #29 from VLegakis/envs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzal3x authored Jul 25, 2024
2 parents 217f7e8 + a27a348 commit 97d5420
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
19 changes: 11 additions & 8 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
REDIS_PASSWORD=
JOB_RETRIES=3
JOB_RETRY_DELAY=1000
BUFFER_SIZE=10
STALE_BUFFER_TIMEOUT_MS=1000
SUI_NETWORK=https://rpc.testnet.sui.io:443
PACKAGE_ADDRESS=
MODULE_NAME=contract_example
ADMIN_SECRET_KEY=
ADMIN_CAP=
ADMIN_SECRET_KEY=
ADMIN_ADDRESS=

REDIS_PASSWORD=test123
JOB_RETRIES=3
JOB_RETRY_DELAY=500
BUFFER_SIZE=500
STALE_BUFFER_TIMEOUT_MS=2000
MODULE_NAME=contract_example
PTE_COIN_BATCH_SIZE=20
PTE_INITIAL_COIN_BALANCE=5000000000
PTE_MINIMUM_COIN_BALANCE=500000000
PTE_MAX_POOL_SIZE=10
PTE_MAX_POOL_SIZE=100
NETWORK=testnet
BULLMQ_WORKER_CONCURRENCY=50
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,10 @@ you can send a POST request to the `request_handler` service with the following
curl --request POST \
--url 'http://localhost:3000/?=' \
--header 'Content-Type: application/json' \
--header 'User-Agent: insomnia/9.2.0' \
--data '{
"smart_contract_function_name": "mint_nft",
"smart_contract_function_arguments": ["0x9320eaaf945570b1baf7607f98a9cf5585fdcb8ed09d46da93199fee16b48196"],
"receiver_address": "0xe40c8cf8b53822829b3a6dc9aea84b62653f60b771e9da4bd4e214cae851b87b"
"smartContractFunctionName": "mint_nft",
"smartContractFunctionArguments": ["0x9320eaaf945570b1baf7607f98a9cf5585fdcb8ed09d46da93199fee16b48196"],
"receiverAddress": "0xe40c8cf8b53822829b3a6dc9aea84b62653f60b771e9da4bd4e214cae851b87b"
}'
```

Expand Down

0 comments on commit 97d5420

Please sign in to comment.