From 12db5be54ea193b86a3c76d3a544b8394288e206 Mon Sep 17 00:00:00 2001 From: cordt-sei <165932662+cordt-sei@users.noreply.github.com> Date: Tue, 31 Dec 2024 12:23:32 -0700 Subject: [PATCH] Update account-structure.mdx add numbers to table --- .../account-structure.mdx | 43 ++++++++++--------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/pages/dev-advanced-concepts/account-structure.mdx b/pages/dev-advanced-concepts/account-structure.mdx index 606f48eb..b5cc83ae 100644 --- a/pages/dev-advanced-concepts/account-structure.mdx +++ b/pages/dev-advanced-concepts/account-structure.mdx @@ -54,27 +54,28 @@ Certain actions are **not possible** before wallets are associated: ### **Transfer Scenarios** -| Source Address | Sender Linked | Receiver Linked | Destination Address | Asset Type | Method | -| -------------- | ------------- | --------------- | ------------------- | --------------- | ------------- | -| SEI | Y | Y | Sei | Native | bankSend | -| SEI | Y | N | Sei | Native | bankSend | -| SEI | Y | Y | 0x | Native | evmSendNative | -| SEI | Y | N | 0x | Native | evmSendNative | -| SEI | N | N | Sei | Native | bankSend | -| SEI | N | N | 0x | Native | Not Possible | -| SEI | N | Y | Sei | Native | bankSend | -| SEI | N | Y | 0x | Native | evmSendNative | -| EVM | N | N | 0x | Native | Not Possible | -| EVM | N | Y | Sei | Native | bankSend | -| EVM | N | Y | 0x | Native | evmSendNative | -| SEI | Y | N | Sei | CW-based Token | wasm transfer | -| SEI | Y | N | 0x | CW-based Token | Not Possible | -| SEI | N | Y | Sei | CW-based Token | wasm transfer | -| SEI | N | Y | 0x | CW-based Token | Not Possible | -| EVM | Y | N | Sei | ERC-based Token | Not Possible | -| EVM | Y | N | 0x | ERC-based Token | evm transfer | -| EVM | N | Y | Sei | ERC-based Token | evm transfer | -| EVM | N | Y | 0x | ERC-based Token | evm transfer | + +| # | Source Address | Sender Linked | Receiver Linked | Destination Address | Asset Type | Method | +|----|----------------|---------------|-----------------|---------------------|-----------------|---------------| +| 1 | SEI | Y | Y | Sei | Native | bankSend | +| 2 | SEI | Y | N | Sei | Native | bankSend | +| 3 | SEI | Y | Y | 0x | Native | evmSendNative | +| 4 | SEI | Y | N | 0x | Native | evmSendNative | +| 5 | SEI | N | N | Sei | Native | bankSend | +| 6 | SEI | N | N | 0x | Native | Not Possible | +| 7 | SEI | N | Y | Sei | Native | bankSend | +| 8 | SEI | N | Y | 0x | Native | evmSendNative | +| 9 | EVM | N | N | 0x | Native | Not Possible | +| 10 | EVM | N | Y | Sei | Native | bankSend | +| 11 | EVM | N | Y | 0x | Native | evmSendNative | +| 12 | SEI | Y | N | Sei | CW-based Token | wasm transfer | +| 13 | SEI | Y | N | 0x | CW-based Token | Not Possible | +| 14 | SEI | N | Y | Sei | CW-based Token | wasm transfer | +| 15 | SEI | N | Y | 0x | CW-based Token | Not Possible | +| 16 | EVM | Y | N | Sei | ERC-based Token | Not Possible | +| 17 | EVM | Y | N | 0x | ERC-based Token | evm transfer | +| 18 | EVM | N | Y | Sei | ERC-based Token | evm transfer | +| 19 | EVM | N | Y | 0x | ERC-based Token | evm transfer | ---