Overtime V2 collaterals

Get a list of all supported collaterals.

Users placing trades with THALES will get 1% extra payouts for each game they have on their ticket.

More about the V2 collateral upgrade in the Medium article.

REST API

GET https://overtimemarketsv2.xyz/overtime-v2/collaterals

See collaterals API endpoint with request/response examples under Postman documentation.

Example Request

https://overtimemarketsv2.xyz/overtime-v2/networks/10/collaterals

Example Response

{
  {
    "symbol": "USDC",
    "name": "USD Coin",
    "address": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85",
    "decimals": 6,
    "default": true
  },
  {
    "symbol": "THALES",
    "name": "Thales DAO Token",
    "address": "0x217d47011b23bb961eb6d93ca9945b7501a5bb11",
    "decimals": 18,
    "default": false
  }
}

Response Parameters

NameTypeDescription

symbol

string

Collateral symbol

name

string

Collateral name

address

string

Collateral address

decimals

number

Number of decimals

default

boolean

Is default collateral: true or false.

Last updated