Skip to content
Draft
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
44 changes: 44 additions & 0 deletions wallet-gateway/test/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,50 @@
"database": "store.sqlite"
},
"networks": [
{
"name": "Utilites (OAuth IDP)",
"chainId": "canton:local-utilities",
"synchronizerId": "global-domain::",
"description": "Mock OAuth IDP",
"ledgerApi": {
"baseUrl": "http://localhost:4003/api/json-api"
},
"auth": {
"identityProviderId": "idp-utilities",
"type": "implicit",
"issuer": "http://127.0.0.1:8889",
"configUrl": "http://127.0.0.1:8889/.well-known/openid-configuration",
"audience": "https://daml.com/jwt/aud/participant/participant1::1220d44fc1c3ba0b5bdf7b956ee71bc94ebe2d23258dc268fdf0824fbaeff2c61424",
"scope": "openid daml_ledger_api offline_access",
"clientId": "operator",
"admin": {
"clientId": "participant_admin",
"clientSecret": "admin-client-secret"
}
}
},
{
"name": "Utilites user (OAuth IDP)",
"chainId": "canton:local-utilities-user",
"synchronizerId": "global-domain::",
"description": "Mock OAuth IDP",
"ledgerApi": {
"baseUrl": "http://localhost:5003/api/json-api"
},
"auth": {
"identityProviderId": "idp-utilities-user",
"type": "implicit",
"issuer": "http://127.0.0.1:8889",
"configUrl": "http://127.0.0.1:8889/.well-known/openid-configuration",
"audience": "https://daml.com/jwt/aud/participant/participant1::1220d44fc1c3ba0b5bdf7b956ee71bc94ebe2d23258dc268fdf0824fbaeff2c61424",
"scope": "openid daml_ledger_api offline_access",
"clientId": "issuer",
"admin": {
"clientId": "participant_admin",
"clientSecret": "admin-client-secret"
}
}
},
{
"name": "Local (password IDP)",
"chainId": "canton:local-password",
Expand Down
Loading