@cowprotocol/cow-sdk
Version:
## 📚 [Docs website](https://docs.cow.fi/)
41 lines • 935 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,
137,
43114,
11155111
],
"description": "Supported chains and their `chainId` for the SDK.\n\nA supported chain, is a chain where CoW Protocol is deployed, so you can sell tokens from there."
},
"appCode": {
"type": "string",
"description": "The code identifying the CLI, UI, service generating the order."
},
"env": {
"type": "string",
"enum": [
"prod",
"staging"
],
"description": "The environment to use for the Cow API."
}
},
"required": [
"account",
"appCode",
"chainId"
],
"definitions": {}
} as const