Skip to content

Commit 34b36ff

Browse files
Update README.md
1 parent 48ca827 commit 34b36ff

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The Flutterwave .NET Library implements the following payment services:
2222

2323

2424
The Library also implements the following features:
25-
1. Tokeniztion
25+
1. Tokenization
2626
2. Subaccounts
2727
4. Currencies.
2828
5. Pre-Authorisation.
@@ -62,10 +62,10 @@ var raveConfig = new RaveConfig(PbKey, SCKey, false);
6262

6363
# Payments
6464
## Card Payments
65-
This implements Card payments for Pin, 3D-Secure, VBV and PreAuth transactions.
65+
This implements Card payments for Pin, 3D-Secure, VBV, and PreAuth transactions.
6666

6767
## Usage
68-
1. Complete basic configuration following the configuration steps.
68+
1. Complete the basic configuration following the configuration steps.
6969

7070
2. Configure the card charge
7171
```
@@ -146,7 +146,7 @@ var cha = cardCharge.Charge(Payload).Result;
146146
This implements direct debit transactions from Bank accounts.
147147

148148
## Usage
149-
1. Complete basic configuration following the configuration steps.
149+
1. Complete the basic configuration following the configuration steps.
150150

151151
2. Configure the Account charge
152152
```
@@ -221,12 +221,12 @@ class Program
221221
```
222222

223223
## Mobile Money Payments
224-
This implements Mpesa, Ghana, Uganda, Zambia and Rwanda Mobile money transactions for customers.
224+
This implements M-Pesa, Ghana, Uganda, Zambia, and Rwanda Mobile money transactions for customers.
225225

226226
## Usage
227-
1. Complete basic configuration following the configuration steps.
227+
1. Complete the basic configuration following the configuration steps.
228228

229-
2. Configure the Mobile money charge
229+
2. Configure the Mobile Money charge.
230230
```
231231
var mobilemoney = new ChargeMobileMoney(raveConfig);
232232
```
@@ -248,7 +248,7 @@ var mobilemoney = new ChargeMobileMoney(raveConfig);
248248
```
249249
var Payload = new MobileMoneyParams(PbKey, ScKey, "Anonymous", "customer", "user@example.com", 1055, "GHS", "054709929220", "network", "country", "paymentType", "MC-0292920");
250250
```
251-
The payload parameters differ for different countries, currencies and payment types.
251+
The payload parameters differ for different countries, currencies, and payment types.
252252

253253
| Country | Payment Type | Country code | Currency | Network |
254254
| ------- | ------------ | ------------ | -------- | ------- |
@@ -258,7 +258,7 @@ The payload parameters differ for different countries, currencies and payment ty
258258
| Zambia | `mobilemoneyzambia` | `NG` | ZMW | `MTN` |
259259
| Uganda | `mobilemoneyuganda` | `UG` | UGX | `UGX` |
260260

261-
4. Carry out mobile money charge
261+
4. Carry out the mobile money charge
262262
```
263263
var cha = mobilemoney.Charge(Payload).Result;
264264
```
@@ -332,12 +332,12 @@ This API allows you to create and update a new Ebills order.
332332
```
333333

334334
## Tokenization
335-
This implements Card tokenization for Pin, 3D-Secure, VBV and NoAuth cards.
335+
This implements Card tokenization for Pin, 3D-Secure, VBV, and NoAuth cards.
336336

337337
## Usage
338-
1. Complete basic configuration following the configuration steps.
338+
1. Complete the basic configuration following the configuration steps.
339339

340-
2. Charge the card using instructions from the Card charge section of the documentation.
340+
2. Charge the card using instructions from the Card Charge section of the documentation.
341341

342342
3. Configure the tokenized card
343343
```
@@ -360,7 +360,7 @@ The payload should contain:
360360
var Payload = new TokensParams(ScKey, "Anonymous", "Customer", "tester@example.com", tranxref, 2100, "NGN", "NG"){ Token = "flw-t1nf-139d69763063262928b77bc1f4fba199-m03k", Narration = "Test"};
361361
```
362362

363-
5. Make tokenized charge.
363+
5. Make a tokenized charge.
364364
```
365365
var tokenResponse = tokenCard.Charge(tokenparam).Result;
366366
```
@@ -391,7 +391,7 @@ var tokenResponse = tokenCard.Charge(tokenparam).Result;
391391
This implements subaccount creation for split payments.
392392

393393
## Usage
394-
1. Complete basic configuration following the configuration steps.
394+
1. Complete the basic configuration following the configuration steps.
395395

396396
2. Configure the SubAccount
397397
```
@@ -442,4 +442,4 @@ var chargeResponse = subacc.Charge(payload).Result;
442442
```
443443

444444
## Support
445-
For further assistance in using the SDK, you can contact the Developers on [Slack](https://join.slack.com/t/flutterwavedevelopers/shared_invite/enQtNTk3MjgxMjU3ODI5LWFkMjBkYTc0ZGJhM2Q5MTY3YjFkYzAyYmM1ZDZjZjUwMjE4YTc2NjQ1ZGM5ZWE4NDUxMzc4MmExYmI1Yjg5ZWU) and [Email](mailto:developers@flutterwavego.com). You can also check out some awesome Beta features [here](https://developer.flutterwave.com/reference#introduction).
445+
For further assistance in using the SDK, you can contact the Developers on [Slack](https://join.slack.com/t/flutterwavedevelopers/shared_invite/enQtNTk3MjgxMjU3ODI5LWFkMjBkYTc0ZGJhM2Q5MTY3YjFkYzAyYmM1ZDZjZjUwMjE4YTc2NjQ1ZGM5ZWE4NDUxMzc4MmExYmI1Yjg5ZWU) and [Email](mailto:developers@flutterwavego.com).

0 commit comments

Comments
 (0)