- Add Foundry project configuration (foundry.toml, foundry.lock) - Add Solidity contracts (TokenFactory138, BridgeVault138, ComplianceRegistry, etc.) - Add API definitions (OpenAPI, GraphQL, gRPC, AsyncAPI) - Add comprehensive test suite (unit, integration, fuzz, invariants) - Add API services (REST, GraphQL, orchestrator, packet service) - Add documentation (ISO20022 mapping, runbooks, adapter guides) - Add development tools (RBC tool, Swagger UI, mock server) - Update OpenZeppelin submodules to v5.0.0
33 lines
610 B
JSON
33 lines
610 B
JSON
{
|
|
"id": "dev-environment",
|
|
"name": "Development",
|
|
"values": [
|
|
{
|
|
"key": "base_url",
|
|
"value": "http://localhost:3000",
|
|
"type": "default",
|
|
"enabled": true
|
|
},
|
|
{
|
|
"key": "auth_url",
|
|
"value": "http://localhost:3000",
|
|
"type": "default",
|
|
"enabled": true
|
|
},
|
|
{
|
|
"key": "client_id",
|
|
"value": "dev-client-id",
|
|
"type": "secret",
|
|
"enabled": true
|
|
},
|
|
{
|
|
"key": "client_secret",
|
|
"value": "dev-client-secret",
|
|
"type": "secret",
|
|
"enabled": true
|
|
}
|
|
],
|
|
"_postman_variable_scope": "environment"
|
|
}
|
|
|