Skip to content

Commit

Permalink
update country code to be 2 letter (#1608)
Browse files Browse the repository at this point in the history
  • Loading branch information
JiahuiWho authored Jan 7, 2025
1 parent 57c0398 commit b5df32c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ecosystem/sep-0038.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Object Schema for `sell_delivery_methods` and `buy_delivery_methods`.
},
{
"asset": "iso4217:BRL",
"country_codes": ["BRA"],
"country_codes": ["BR"],
"sell_delivery_methods": [
{
"name": "cash",
Expand Down Expand Up @@ -262,7 +262,7 @@ Get the amount and asset available for selling `100` of the `stellar:USDC:GA5...
the `ACH` delivery.

```
GET /prices?sell_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&sell_amount=100&country_code=BRA&buy_delivery_method=ACH
GET /prices?sell_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&sell_amount=100&country_code=BR&buy_delivery_method=ACH
```

```json
Expand All @@ -283,7 +283,7 @@ Get the amount and asset available for selling `500` of the `iso4217:BRL` with t
delivery method.

```
GET /prices?sell_asset=iso4217:BRL&sell_amount=500&country_code=BRA&sell_delivery_method=PIX
GET /prices?sell_asset=iso4217:BRL&sell_amount=500&country_code=BR&sell_delivery_method=PIX
```

```json
Expand Down Expand Up @@ -382,7 +382,7 @@ Object Schema for `fee.details`:
##### Examples

```text
GET /price?sell_asset=iso4217:BRL&buy_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&sell_amount=500&sell_delivery_method=PIX&country_code=BRA&context=sep6
GET /price?sell_asset=iso4217:BRL&buy_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&sell_amount=500&sell_delivery_method=PIX&country_code=BR&context=sep6
```

```js
Expand All @@ -401,7 +401,7 @@ GET /price?sell_asset=iso4217:BRL&buy_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MO
---

```text
GET /price?sell_asset=iso4217:BRL&buy_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&buy_amount=100&sell_delivery_method=PIX&country_code=BRA&context=sep31
GET /price?sell_asset=iso4217:BRL&buy_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&buy_amount=100&sell_delivery_method=PIX&country_code=BR&context=sep31
```

```js
Expand All @@ -426,7 +426,7 @@ GET /price?sell_asset=iso4217:BRL&buy_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MO
---

```text
GET /price?sell_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&buy_asset=iso4217:BRL&sell_amount=90&buy_delivery_method=PIX&country_code=BRA&context=sep6
GET /price?sell_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&buy_asset=iso4217:BRL&sell_amount=90&buy_delivery_method=PIX&country_code=BR&context=sep6
```

```js
Expand All @@ -452,7 +452,7 @@ GET /price?sell_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP
---

```text
GET /price?sell_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&buy_asset=iso4217:BRL&buy_amount=500&buy_delivery_method=PIX&country_code=BRA&context=sep31
GET /price?sell_asset=stellar:USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN&buy_asset=iso4217:BRL&buy_amount=500&buy_delivery_method=PIX&country_code=BR&context=sep31
```

```js
Expand Down

0 comments on commit b5df32c

Please sign in to comment.