Skip to content

Commit d9ee180

Browse files
committed
updated pages to new crowdin pages
1 parent 44fa557 commit d9ee180

File tree

26 files changed

+609
-601
lines changed

26 files changed

+609
-601
lines changed

apps/portal/src/app/connect/page.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ Comienza a usar Connect en el lenguaje de programación que prefieras.
7878

7979
### Con Connect, puedes
8080

81-
- **Conéctate a más de 350 proveedores de billeteras diferentes** con soporte para cada red EVM
82-
- **Inicia sesión y autentica a tus usuarios** con flujos personalizables y seguros de [email, phone, passkeys and social login](https://portal.thirdweb.com/connect/in-app-wallet/overview) flows
83-
- **Patrocina transacciones** para integrar sin problemas a usuarios no nativos o nuevos en criptomonedas con [Account Abstraction](https://portal.thirdweb.com/connect/account-abstraction/overview)
84-
- **Realiza acciones de billetera** como conectar y desconectar billeteras, ver saldos, mostrar nombres ENS y ejecutar transacciones con nuestra [perfomant, reliable and type safe API](https://portal.thirdweb.com/connect/blockchain-api)
85-
- **Integra fácilmente con los contratos de thirdweb** para permitir que los usuarios interactúen con tu aplicación.
86-
- **Facilita los pagos** permitiendo que los usuarios recarguen sus billeteras o realicen compras en la blockchain con tarjeta de crédito a través de [Pay](https://portal.thirdweb.com/connect/pay/overview).
81+
- Conectarte a más de 350 proveedores de billeteras diferentes con soporte para cada red EVM.
82+
- Iniciar sesión y autenticar a tus usuarios con flujos personalizables y seguros de inicio de sesión por correo electrónico, teléfono, claves de acceso y redes sociales. Puedes obtener más información [aquí](https://portal.thirdweb.com/connect/in-app-wallet/overview).
83+
- Patrocinar transacciones para integrar sin problemas a usuarios nuevos o no nativos en criptomonedas con Account Abstraction.
84+
- Realizar acciones de billetera como conectar y desconectar billeteras, ver saldos, mostrar nombres ENS y ejecutar transacciones con nuestra [API eficiente, confiable y segura para tipos](https://portal.thirdweb.com/connect/blockchain-api).
85+
- Integrarte fácilmente con los contratos de thirdweb para permitir que los usuarios interactúen con tu aplicación.
86+
- Facilitar pagos permitiendo que los usuarios recarguen sus billeteras o realicen compras en la blockchain con tarjeta de crédito a través de [Pay](https://portal.thirdweb.com/connect/pay/overview).
8787

8888
<Callout variant="info" title="¿Has generado un ID de cliente?">
8989
<div className="flex flex-col gap-4 items-start">

apps/portal/src/app/dotnet/contracts/create/page.mdx

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,44 @@ import { Details, createMetadata } from "@doc";
33
export const metadata = createMetadata({
44
title: "ThirdwebContract.Create | Thirdweb .NET SDK",
55
description:
6-
"Instantiate a ThirdwebContract to interact with smart contracts.",
6+
"Instancia un ThirdwebContract para interactuar con contratos inteligentes.",
77
});
88

99
# ThirdwebContract.Create
1010

11-
Create an instance of `ThirdwebContract` to start interacting with a deployed smart contract. You can read data from and write data to the blockchain using this contract instance. If the ABI is not provided, it will attempt to fetch it automatically if available.
11+
Crea una instancia de `ThirdwebContract` para comenzar a interactuar con un contrato inteligente desplegado. Puedes leer y escribir datos en la blockchain usando esta instancia de contrato. Si no se proporciona el ABI, intentará obtenerlo automáticamente si está disponible.
1212

13-
## Usage
13+
## Uso
1414

1515
```csharp
1616
var contract = await ThirdwebContract.Create(client, "contractAddress", chainId, "optionalAbi");
1717
```
1818

19-
<Details summary="Parameters">
19+
<Details summary="Parámetros">
2020

21-
### client (required)
21+
### cliente (requerido)
2222

23-
An instance of `ThirdwebClient`.
23+
Una instancia de `ThirdwebClient`.
2424

25-
### address (required)
25+
### dirección (requerido)
2626

27-
The address of the smart contract you want to interact with. Must be a hexadecimal `string`.
27+
La dirección del contrato inteligente con el que deseas interactuar. Debe ser una cadena hexadecimal `string`.
2828

29-
### chain (required)
29+
### cadena (requerido)
3030

31-
The blockchain network's chain ID as a `BigInteger`. This ID specifies which network the contract is deployed on.
31+
El ID de cadena de la red blockchain como un `BigInteger`. Este ID especifica en qué red está desplegado el contrato.
3232

33-
### abi (optional)
33+
### abi (opcional)
3434

35-
The ABI of the contract. If not provided, it will attempt to fetch the ABI automatically if available.
35+
El ABI del contrato. Si no se proporciona, intentará obtener el ABI automáticamente si está disponible.
3636

3737
</Details>
3838

39-
<Details summary="Return Value">
39+
<Details summary="Valor de retorno">
4040

41-
### ThirdwebContract
41+
### Valor de retorno
4242

43-
Returns an instance of `ThirdwebContract` configured with the provided parameters, ready to interact with the blockchain.
43+
Devuelve una instancia de `ThirdwebContract` configurada con los parámetros proporcionados, lista para interactuar con la blockchain.
4444

4545
</Details>
46+

apps/portal/src/app/dotnet/contracts/prepare/page.mdx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,40 +12,41 @@ Instantiate a low level [Transaction](/dotnet/transactions/create) object from a
1212

1313
Useful for preparing, simulating and manipulating transactions before sending them to the blockchain.
1414

15-
## Usage
15+
## Uso
1616

1717
```csharp
1818
ThirdwebTransaction transaction = await contract.Prepare(wallet, contract, "methodName", weiValue, parameters);
1919
```
2020

21-
<Details summary="Parameters">
21+
<Details summary="Parámetros">
2222

23-
### wallet (required)
23+
### wallet (requerido)
2424

25-
An instance of `IThirdwebWallet`. This represents the signer of the transaction, which can be any type of wallet provider.
25+
Una instancia de `IThirdwebWallet`. Representa al firmante de la transacción, que puede ser cualquier tipo de proveedor de billetera.
2626

27-
### contract (required)
27+
### contract (requerido)
2828

29-
An instance of `ThirdwebContract`. Represents the smart contract you wish to interact with.
29+
Una instancia de `ThirdwebContract`. Representa el contrato inteligente con el que deseas interactuar.
3030

31-
### methodName (required)
31+
### methodName (requerido)
3232

33-
The name of the smart contract method you intend to call. Must be a `string`.
33+
El nombre del método del contrato inteligente que deseas llamar. Debe ser un `string`.
3434

35-
### weiValue (required)
35+
### weiValue (requerido)
3636

37-
The amount of Wei to send with payable transactions as a `BigInteger`. This is often set to 0 for methods that don't require sending Ether.
37+
La cantidad de Wei a enviar con las transacciones pagaderas como un `BigInteger`. Esto generalmente se establece en 0 para métodos que no requieren el envío de Ether.
3838

39-
### parameters (optional)
39+
### parameters (opcional)
4040

41-
The parameters to pass to the smart contract method, if any. Provide these as a comma-separated list after weiValue.
41+
Los parámetros a pasar al método del contrato inteligente, si los hay. Proporciona estos como una lista separada por comas después de weiValue.
4242

4343
</Details>
4444

45-
<Details summary="Return Value">
45+
<Details summary="Valor de retorno">
4646

4747
### Transaction
4848

49-
Returns an instance of `ThirdwebTransaction` configured with the provided parameters, ready to be sent to the blockchain.
49+
Devuelve una instancia de `ThirdwebTransaction` configurada con los parámetros proporcionados, lista para ser enviada a la blockchain.
5050

5151
</Details>
52+
Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Details, createMetadata } from "@doc";
22

33
export const metadata = createMetadata({
4-
title: "ThirdwebContract.Read | Thirdweb .NET SDK",
5-
description: "Read data from a smart contract using the Thirdweb .NET SDK.",
4+
title: "ThirdwebContract.Read | Thirdweb .NET SDK",
5+
description: "Read data from a smart contract using the Thirdweb .NET SDK.",
66
});
77

88
# ThirdwebContract.Read
@@ -15,26 +15,27 @@ Use `ThirdwebContract.Read` to fetch data from a smart contract without making a
1515
var result = await contract.Read<T>(contract, "methodName", parameters);
1616
```
1717

18-
<Details summary="Parameters">
18+
<Details summary="Parámetros">
1919

20-
### contract (required)
20+
### contract (requerido)
2121

22-
An instance of `ThirdwebContract`. Represents the smart contract you want to interact with.
22+
Una instancia de `ThirdwebContract`. Representa el contrato inteligente con el que deseas interactuar.
2323

24-
### methodName (required)
24+
### methodName (requerido)
2525

26-
The name of the contract method you wish to call. Must be a `string`.
26+
El nombre del método del contrato que deseas llamar. Debe ser una cadena de texto (`string`).
2727

28-
### parameters (optional)
28+
### parameters (opcional)
2929

30-
The parameters to pass to the contract method, if any. Provide as a comma-separated list following methodName.
30+
Los parámetros que se pasarán al método del contrato, si los hay. Proporciónalos como una lista separada por comas después de `methodName`.
3131

3232
</Details>
3333

34-
<Details summary="Return Value">
34+
<Details summary="Valor de retorno">
3535

3636
### T
3737

38-
Returns the result of the contract method call as type T. The type T should match the expected return type of the smart contract method. For example, if the smart contract method returns an uint256, you should expect to receive a BigInteger in C#.
38+
Devuelve el resultado de la llamada al método del contrato como tipo T. El tipo T debe coincidir con el tipo de retorno esperado del método del contrato inteligente. Por ejemplo, si el método del contrato devuelve un `uint256`, deberías esperar recibir un `BigInteger` en C#.
3939

4040
</Details>
41+

apps/portal/src/app/dotnet/pay/buywithcrypto/page.mdx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,38 @@ import { Details, createMetadata } from "@doc";
22

33
export const metadata = createMetadata({
44
title: "BuyWithCrypto | thirdweb .NET SDK",
5-
description: "Send a quoted swap transaction.",
5+
description: "Envía una transacción de intercambio citada.",
66
});
77

88
# BuyWithCrypto
99

10-
Send a quoted swap transaction. See [GetBuyWithCryptoQuote](/dotnet/pay/getbuywithcryptoquote) for more information on how to get a swap quote.
10+
Envía una transacción de intercambio citada. Consulta [GetBuyWithCryptoQuote](/dotnet/pay/getbuywithcryptoquote) para obtener más información sobre cómo obtener una cotización de intercambio.
1111

12-
## Usage
12+
## Uso
1313

1414
```csharp
1515
using Thirdweb.Pay;
1616

1717
var txHash = await ThirdwebPay.BuyWithCrypto(wallet, buyWithCryptoquote);
1818
```
1919

20-
<Details summary="Configuration">
20+
<Details summary="Configuración">
2121

22-
#### wallet (required)
22+
#### wallet (requerido)
2323

24-
An instance of `IThirdwebWallet`. This represents the signer of the transaction, which can be any type of wallet provider.
24+
Una instancia de `IThirdwebWallet`. Este representa el firmante de la transacción, que puede ser cualquier tipo de proveedor de billetera.
2525

26-
#### BuyWithCryptoQuoteResult (required)
26+
#### BuyWithCryptoQuoteResult (requerido)
2727

28-
See [GetBuyWithCryptoQuote](/dotnet/pay/getbuywithcryptoquote) for more information on the `BuyWithCryptoQuoteResult` object.
28+
Consulta [GetBuyWithCryptoQuote](/dotnet/pay/getbuywithcryptoquote) para obtener más información sobre el objeto `BuyWithCryptoQuoteResult`.
2929

3030
</Details>
3131

32-
<Details summary="Return Value">
32+
<Details summary="Valor de retorno">
3333

34-
### Return Value
34+
### Valor de retorno
3535

36-
`string`: The transaction hash of the swap transaction.
36+
`string`: El hash de la transacción del intercambio.
3737

3838
</Details>
39+

apps/portal/src/app/dotnet/pay/buywithfiat/page.mdx

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,31 @@ export const metadata = createMetadata({
77

88
# BuyWithFiat
99

10-
Generate an onramp link to redirect users to. See [GetBuyWithFiatQuote](/dotnet/pay/getbuywithfiatquote) for more information on how to get an onramp quote.
10+
Genera un enlace de onramp para redirigir a los usuarios. Consulta [GetBuyWithFiatQuote](/dotnet/pay/getbuywithfiatquote) para obtener más información sobre cómo obtener una cotización de onramp.
1111

12-
## Usage
12+
## Uso
1313

1414
```csharp
1515
using Thirdweb.Pay;
1616

17-
// We return the raw onramp link you should redirect the user to.
17+
// Devolvemos el enlace de onramp crudo al que deberías redirigir al usuario.
1818
var onRampLink = await ThirdwebPay.BuyWithFiat(buyWithFiatQuoteResult);
19-
// You can then use the quote's intent id to track the onramp status.
19+
// Luego, puedes usar el id del intento de la cotización para rastrear el estado del onramp.
2020
```
2121

22-
<Details summary="Configuration">
22+
<Details summary="Configuración">
2323

24-
#### BuyWithFiatQuoteResult (required)
24+
#### BuyWithFiatQuoteResult (requerido)
2525

26-
See [GetBuyWithFiatQuote](/dotnet/pay/getbuywithfiatquote) for more information on the `BuyWithFiatQuoteResult` object.
26+
Consulta [GetBuyWithFiatQuote](/dotnet/pay/getbuywithfiatquote) para más información sobre el objeto `BuyWithFiatQuoteResult`.
2727

2828
</Details>
2929

30-
<Details summary="Return Value">
30+
<Details summary="Valor de retorno">
3131

32-
### Return Value
32+
### Valor de retorno
3333

34-
`string`: The onramp link to redirect the user to.
34+
`string`: El enlace de onramp al que debes redirigir al usuario.
3535

3636
</Details>
37+
Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,69 @@
11
import { Details, createMetadata } from "@doc";
22

33
export const metadata = createMetadata({
4-
title: "GetBuyHistory | thirdweb .NET SDK",
5-
description: "Get buy history, supports cursor and pagination.",
4+
title: "GetBuyHistory | thirdweb .NET SDK",
5+
description: "Get buy history, supports cursor and pagination.",
66
});
77

88
# GetBuyHistory
99

10-
Get buy history for a specific wallet that executed a [Buy With Crypto](/dotnet/pay/buywithcrypto) or [Buy With Fiat](/dotnet/pay/buywithfiat) swap, supports cursor and pagination.
10+
Obtén el historial de compras para una billetera específica que haya ejecutado un intercambio de [Buy With Crypto](/dotnet/pay/buywithcrypto) o [Buy With Fiat](/dotnet/pay/buywithfiat), con soporte para cursor y paginación.
1111

12-
## Usage
12+
## Uso
1313

1414
```csharp
1515
using Thirdweb.Pay;
1616

1717
var history = await ThirdwebPay.GetBuyHistory(client, walletAddress);
1818
```
1919

20-
<Details summary="Configuration">
20+
<Details summary="Configuración">
2121

22-
#### Client (required)
22+
#### Cliente (requerido)
2323

24-
`ThirdwebClient`: The Thirdweb client instance.
24+
`ThirdwebClient`: La instancia del cliente de Thirdweb.
2525

26-
#### Wallet Address (required)
26+
#### Dirección de billetera (requerido)
2727

28-
`string`: The wallet address to get the swap history for.
28+
`string`: La dirección de la billetera para obtener el historial de intercambios.
2929

30-
#### Start Index (optional)
30+
#### Índice de inicio (opcional)
3131

32-
`int`: The start index of the swap history.
32+
`int`: El índice de inicio del historial de intercambios.
3333

34-
#### Count (optional)
34+
#### Cuenta (opcional)
3535

36-
`int`: The number of swaps to return.
36+
`int`: El número de intercambios para devolver.
3737

38-
#### Cursor (optional)
38+
#### Cursor (opcional)
3939

40-
`string`: The cursor to get the next page of swap history. (Optional)
40+
`string`: El cursor para obtener la siguiente página del historial de intercambios. (Opcional)
4141

42-
#### Page Size (optional)
42+
#### Tamaño de la página (opcional)
4343

44-
`int`: The page size of the swap history. (Optional)
44+
`int`: El tamaño de la página del historial de intercambios. (Opcional)
4545

4646
</Details>
4747

48-
<Details summary="Return Value">
48+
<Details summary="Valor de retorno">
4949

50-
### Return Value
50+
### Valor de retorno
51+
52+
Un objeto `BuyHistoryResult` que contiene las siguientes propiedades:
5153

52-
A `BuyHistoryResult` object containing the following properties:
5354

5455
```csharp
55-
string WalletAddress; // The wallet address.
56-
List<HistoryPage> Page; // The buy history page.
57-
string NextCursor; // The next cursor.
58-
int PageSize; // The page size.
56+
string WalletAddress; // La dirección de la billetera.
57+
List<HistoryPage> Page; // La página del historial de compras.
58+
string NextCursor; // El siguiente cursor.
59+
int PageSize; // El tamaño de la página.
5960
```
6061

61-
The `HistoryPage` object contains the following properties:
62+
El objeto `HistoryPage` contiene las siguientes propiedades:
6263

6364
```csharp
64-
BuyWithCryptoStatusResult BuyWithCryptoStatus; // Swap status for Buy With Crypto transactions if any.
65-
BuyWithFiatStatusResult BuyWithFiatStatus; // Swap status for Buy With Fiat transactions if any.
65+
BuyWithCryptoStatusResult BuyWithCryptoStatus; // Estado del intercambio para las transacciones de Buy With Crypto, si las hay.
66+
BuyWithFiatStatusResult BuyWithFiatStatus; // Estado del intercambio para las transacciones de Buy With Fiat, si las hay.
6667
```
6768

6869
</Details>

0 commit comments

Comments
 (0)