Skip to content

Commit 29ebce8

Browse files
committed
added v3 deployment addresses page
1 parent 4497258 commit 29ebce8

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

components/ContractsAddresses/index.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { Link } from 'components'
66
type ContractName =
77
'factory'
88
| 'lp'
9+
| 'vault'
910
| 'prematchCore'
1011
| 'expressCore'
1112
| 'proxyFront'
@@ -15,6 +16,7 @@ type ContractName =
1516
| 'hostCore'
1617
| 'clientCore'
1718
| 'relayer'
19+
| 'cashout'
1820

1921
const config: Record<ContractName, { title: string, link?: string }> = {
2022
factory: {
@@ -25,6 +27,10 @@ const config: Record<ContractName, { title: string, link?: string }> = {
2527
title: 'LP',
2628
link: '/contracts/lp',
2729
},
30+
vault: {
31+
title: 'Vault',
32+
link: '/contracts/vault',
33+
},
2834
prematchCore: {
2935
title: 'PrematchCore',
3036
link: '/contracts/prematch-core',
@@ -60,11 +66,16 @@ const config: Record<ContractName, { title: string, link?: string }> = {
6066
title: 'Relayer',
6167
link: '/contracts/live-relayer',
6268
},
69+
cashout: {
70+
title: 'Cashout',
71+
link: '/contracts/cashout',
72+
},
6373
}
6474

6575
const rows: ContractName[] = [
6676
'factory',
6777
'lp',
78+
'vault',
6879
'prematchCore',
6980
'expressCore',
7081
'proxyFront',
@@ -73,7 +84,8 @@ const rows: ContractName[] = [
7384
'azuroBet',
7485
'hostCore',
7586
'clientCore',
76-
'relayer'
87+
'relayer',
88+
'cashout'
7789
]
7890

7991
type ContractsTableProps = {

pages/hub/protocol-v3/_meta.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"overview": "Overview",
33
"v3-migration-guide": "Migrate v2 to v3",
44
"sdk-migration-guide-v6": "Migrate SDK from v5 to v6",
5-
"v3-smartconrtact-changes": "Smart contract changes v3"
5+
"v3-smartconrtact-changes": "Smart contract changes v3",
6+
"v3-deployment-addresses": "Deployment Addresses"
67
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import { ContractsAddresses } from 'components'
2+
3+
# Deployment Addresses for Azuro Protocol V3
4+
5+
## Contracts (Development)
6+
7+
<ContractsAddresses
8+
tabs={[
9+
{
10+
chain: 'Polygon Amoy v3.0.9',
11+
addresses: {
12+
lp: '0x79A8d0e954A1275DFe6A2a8acDD136718B54cA16',
13+
vault: '0x75d8266E872e6e45222C41D33D9f47e53b1f6165',
14+
clientCore: '0xe6AA5BAE8a4fFe65dD60a1868C1044Cb05d55195',
15+
betToken: '0xCf1b86ceD971b88C042C64A9c099377e2738073C',
16+
azuroBet: '0x8583942bEFd6dc0166Dfb0b9fd680457e01A94Ca',
17+
relayer: '0x40cff79D064DA1723F838B2Aaad2cfE1ba5b2812',
18+
cashout: '0x43Ec9E387dC3f11CEAF9a428BD8c1Df47823ce7C',
19+
},
20+
},
21+
]}
22+
/>
23+
24+
## Client subgraphs (Development)
25+
26+
- Polygon Amoy: https://thegraph.onchainfeed.org/subgraphs/name/azuro-protocol/azuro-api-polygon-amoy-dev-v3
27+
28+
## Data-feed subgraphs (Development)
29+
30+
- Polygon Amoy: https://thegraph.onchainfeed.org/subgraphs/name/azuro-protocol/azuro-data-feed-polygon-amoy-dev
31+
32+
## Backend API (Development)
33+
34+
- https://dev-api.onchainfeed.org/api/v1/public/gateway/docs
35+
36+
## Websockets API (Development)
37+
38+
- wss://dev-streams.onchainfeed.org/v1/streams/feed

0 commit comments

Comments
 (0)