Skip to content

Commit ebf31c8

Browse files
authored
Merge pull request #11 from marcinx/master
README updates
2 parents 6b4af39 + f24efb4 commit ebf31c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Upon visiting the URL, your customer is presented with a checkout page hosted on
6464
response = client.post('/checkout/hosted', {
6565
:charge => {
6666
:customerId => customer_id, # associates this charge with a customer
67-
:currency => 'USD', # specifies the billing currency
67+
:billingCurrency => 'USD', # specifies the billing currency
6868
:lineItems => [{ # a list of line items included in this charge
6969
:description => 'T-Shirt',
7070
:netAmount => 10, # denominated in the currency specified above
@@ -122,7 +122,7 @@ response = client.get('/wallets')
122122
response = client.post('/withdrawal', {
123123
:sourceAsset => 'USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN', #withdraw from your USDC wallet
124124
:sourceAmount => '100',
125-
:targetNetwork => 'BTC', # send to a BTC address
125+
:targetNetwork => 'BITCOIN', # send to a Bitcoin address
126126
:targetAccount => {
127127
:address => 'bc1qj633nx575jm28smgcp3mx6n3gh0zg6ndr0ew23'
128128
}
@@ -134,7 +134,7 @@ response = client.post('/withdrawal', {
134134
response = client.post('/withdrawal', {
135135
:sourceAsset => 'USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN', #withdraw from your USDC wallet
136136
:sourceAmount => '100',
137-
:targetNetwork => 'XLM', # send to a Stellar account
137+
:targetNetwork => 'STELLAR', # send to a Stellar account
138138
:targetAccount => {
139139
:account => 'GDONUHZKLSYLDOZWR2TDW25GFXOBWCCKTPK34DLUVSOMFHLGURX6FNU6',
140140
:memo => 'Exodus',

0 commit comments

Comments
 (0)