@cowprotocol/cow-sdk
Version:
<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>
31 lines • 641 B
text/typescript
export default {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"account": {
"type": "string"
},
"chainId": {
"type": "number",
"enum": [
1,
100,
42161,
8453,
11155111
],
"description": "Supported chains and their `chainId` for the SDK."
},
"appCode": {
"type": "string",
"description": "The code identifying the CLI, UI, service generating the order."
}
},
"required": [
"account",
"appCode",
"chainId"
],
"definitions": {}
} as const