27 lines
842 B
Bash
27 lines
842 B
Bash
# Wallet that pays Primus tasks (needs ETH on the Primus chain). Its address
|
|
# is the attestation recipient and must match the contract's `prover`.
|
|
PRIVATE_KEY=0xYOUR_PRIVATE_KEY
|
|
PRIMUS_CHAIN_ID=84532
|
|
PRIMUS_RPC_URL=https://sepolia.base.org
|
|
|
|
# BB Pay credentials (Portal Developers BB)
|
|
CLIENT_ID=
|
|
CLIENT_SECRET=
|
|
DEV_APP_KEY=
|
|
CONVENIO=701
|
|
|
|
# mTLS client certificate chain and its private key (PEM). Use a certificate
|
|
# registered with BB for this purpose, not the company e-CNPJ.
|
|
CLIENT_CRT=cert.pem
|
|
CLIENT_KEY=key.pem
|
|
# Extra CA bundle, only for hosts whose chain is not in Node's trust store.
|
|
#BB_CA=bb.pem
|
|
|
|
ITP_OAUTH_URL=https://oauth.hm.bb.com.br/oauth/token
|
|
ITP_API_URL=https://checkout.mtls.api.hm.bb.com.br/v2
|
|
#ITP_OAUTH_URL=https://oauth.bb.com.br/oauth/token
|
|
#ITP_API_URL=https://checkout.mtls.api.bb.com.br/v2
|
|
|
|
PORT=5000
|
|
DEBUG=false
|