You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/content/docs/integrations/typescript/guided-tutorial/cosmos-call.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Cross Chain Contract Calls
3
3
description: Example call on Babylon to Ethereum contract.
4
4
---
5
5
6
-
This guide walk's you through writing our example ["Call"](/integrations/typescript/examples/cosmos/call/). The goal of this guide is to show you how to conduct a cross chain contract call using [USC03 - ZKGM](/ucs/03/). In this case we will be calling a contract on Ethereum from Babylon.
6
+
This guide walks you through writing our example ["Call"](/integrations/typescript/examples/cosmos/call/). The goal of this guide is to show you how to conduct a cross chain contract call using [ucs03-zkgm](/ucs/03/). In this case we will be calling a contract on Ethereum from Babylon.
7
7
8
8
Relevant imports will be included with each step. Outside of libraries provided by Union, this guide uses [Effect](https://effect.website/).
9
9
@@ -50,14 +50,14 @@ const program = Effect.gen(function*() {
50
50
```
51
51
52
52
:::note
53
-
The ID's provided here are Universal Chain ID's as defined by [UCS04](/ucs/04).
53
+
The IDs provided here are Universal Chain IDs as defined by [ucs04](/ucs/04).
54
54
:::
55
55
56
56
### 3. Call
57
57
58
58
To create a `Call`, we supply the `sender`, `contractAddress`, and `contractCalldata`.
59
59
60
-
More information about `Call` and its fields can be found in the [UCS03 - 0x01 Call Docs](/ucs/03/#0x01---call).
60
+
More information about `Call` and its fields can be found in the [Call](/ucs/03/#0x01---call) docs.
Copy file name to clipboardExpand all lines: docs/src/content/docs/integrations/typescript/guided-tutorial/cosmos-union-sepolia.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Send Funds Union → Sepolia
3
3
description: Example transfer from Union to Sepolia.
4
4
---
5
5
6
-
This guide walk's you through writing our example ["Send Funds Union -> Sepolia"](/integrations/typescript/examples/cosmos/send-funds-union-to-sepolia/). The goal of this guide it to show you how to create a token order and submit it to the [UCS03 - ZKGM](/ucs/04) interface.
6
+
This guide walks you through writing our example ["Send Funds Union -> Sepolia"](/integrations/typescript/examples/cosmos/send-funds-union-to-sepolia/). The goal of this guide it to show you how to create a token order and submit it to the [ucs03-zkgm](/ucs/03) interface.
7
7
8
8
Relevant imports will be included with each step. Outside of libraries provided by Union, this guide uses [Effect](https://effect.website/).
9
9
@@ -41,7 +41,7 @@ const program = Effect.gen(function*() {
41
41
```
42
42
43
43
:::note
44
-
The ID's provided here are Universal Chain ID's as defined by [UCS04](/ucs/04).
44
+
The ID's provided here are Universal Chain ID's as defined by [ucs04](/ucs/04).
45
45
:::
46
46
47
47
### 3. Token Order
@@ -50,7 +50,7 @@ Now you can define the token order that will be responsible for the transfer. Th
50
50
51
51
To construct the token order, you will need the token contract/denom on both the source chain (`baseToken`) and the destination chain (`quoteToken`). In this case, we are using the relevant denom and contract address for U.
52
52
53
-
We also need to determine the `Kind` for the `TokenOrder`. In this case, we use `solve`. Though kind can be `initialize`, `escrow`, `unescrow`, or `solve`. To understand which kind of token order to use, refer to the [UCS03 EVM Token Order Examples docs](/ucs/03/#evm-token-order-examples).
53
+
We also need to determine the `Kind` for the `TokenOrder`. In this case, we use `solve`. Though kind can be `initialize`, `escrow`, `unescrow`, or `solve`. To understand which kind of token order to use, refer to the [ucs03 EVM Token Order Examples docs](/ucs/03/#evm-token-order-examples).
description: Guide for transfers from Holesky to Sepolia.
4
4
---
5
5
6
-
This guide walk's you through writing our example ["Send Funds Holesky -> Sepolia"](/integrations/typescript/examples/evm/send-funds-holesky-to-sepolia/). The goal of this guide it to show you how to create a token order and submit it to the [UCS03 - ZKGM](/ucs/04) interface.
6
+
This guide walks you through writing our example ["Send Funds Holesky -> Sepolia"](/integrations/typescript/examples/evm/send-funds-holesky-to-sepolia/). The goal of this guide it to show you how to create a token order and submit it to the [ucs03-zkgm](/ucs/03) interface.
7
7
8
8
Relevant imports will be included with each step. Outside of libraries provided by Union, this guide uses [viem](https://viem.sh/) and [Effect](https://effect.website/).
9
9
@@ -40,7 +40,7 @@ const program = Effect.gen(function*() {
40
40
```
41
41
42
42
:::note
43
-
The ID's provided here are Universal Chain ID's as defined by [UCS04](/ucs/04).
43
+
The IDs provided here are Universal Chain IDs as defined by [ucs04](/ucs/04).
44
44
:::
45
45
46
46
### 3. Token Order
@@ -49,7 +49,7 @@ Now you can define the token order that will be responsible for the transfer. Th
49
49
50
50
To construct the token order, you will need the token contract/denom on both the source chain (`baseToken`) and the destination chain (`quoteToken`). In this case, we are using the relevant contract addresses for LINK.
51
51
52
-
We also need to determine the `Kind` for the `TokenOrder`. In this case, we use `esccrow`. Though kind can be `initialize`, `escrow`, `unescrow`, or `solve`. To understand which kind of token order to use, refer to the [UCS03 EVM Token Order Examples docs](/ucs/03/#evm-token-order-examples).
52
+
We also need to determine the `Kind` for the `TokenOrder`. In this case, we use `esccrow`. Though kind can be `initialize`, `escrow`, `unescrow`, or `solve`. To understand which kind of token order to use, refer to the [ucs03 EVM Token Order Examples docs](/ucs/03/#evm-token-order-examples).
@@ -102,7 +102,7 @@ const program = Effect.gen(function*() {
102
102
```
103
103
104
104
:::note
105
-
UCS03 addresses can be found on the [Deployments page](/protocol/deployments/)
105
+
ucs03 addresses can be found on the [Deployments page](/protocol/deployments/)
106
106
:::
107
107
108
108
### 5. zkgm Execution & Response
@@ -144,7 +144,7 @@ const program = Effect.gen(function*() {
144
144
145
145
:::note
146
146
***NOTE #1*** -
147
-
In this example, it does not matter, as we manually provide the key and specify the transport in [Execution](#execution). If you were developing a web app with a wallet client - you would need to switch the chains here.
147
+
In this example, it does not matter, as we manually provide the key and specify the transport in [Execution](#execution). If you were developing a web app with a wallet client, you would need to switch the chains here.
0 commit comments