Skip to content

Commit

Permalink
v13.6.1: add base to cost scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
10xSebastian committed Sep 4, 2023
1 parent e0ec258 commit 17cd39d
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 3 deletions.
2 changes: 2 additions & 0 deletions dist/esm/index.evm.js
Original file line number Diff line number Diff line change
Expand Up @@ -45629,6 +45629,8 @@ const getBlockchainCost = (blockchain) => {
return 0.10
case 'bsc':
return 0.20
case 'base':
return 0.25
case 'arbitrum':
return 0.30
case 'optimism':
Expand Down
2 changes: 2 additions & 0 deletions dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1932,6 +1932,8 @@ const getBlockchainCost = (blockchain) => {
return 0.10
case 'bsc':
return 0.20
case 'base':
return 0.25
case 'arbitrum':
return 0.30
case 'optimism':
Expand Down
2 changes: 2 additions & 0 deletions dist/esm/index.solana.js
Original file line number Diff line number Diff line change
Expand Up @@ -3233,6 +3233,8 @@ const getBlockchainCost = (blockchain) => {
return 0.10
case 'bsc':
return 0.20
case 'base':
return 0.25
case 'arbitrum':
return 0.30
case 'optimism':
Expand Down
2 changes: 2 additions & 0 deletions dist/umd/index.evm.js
Original file line number Diff line number Diff line change
Expand Up @@ -45635,6 +45635,8 @@
return 0.10
case 'bsc':
return 0.20
case 'base':
return 0.25
case 'arbitrum':
return 0.30
case 'optimism':
Expand Down
2 changes: 2 additions & 0 deletions dist/umd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1937,6 +1937,8 @@
return 0.10
case 'bsc':
return 0.20
case 'base':
return 0.25
case 'arbitrum':
return 0.30
case 'optimism':
Expand Down
2 changes: 2 additions & 0 deletions dist/umd/index.solana.js
Original file line number Diff line number Diff line change
Expand Up @@ -3238,6 +3238,8 @@
return 0.10
case 'bsc':
return 0.20
case 'base':
return 0.25
case 'arbitrum':
return 0.30
case 'optimism':
Expand Down
2 changes: 1 addition & 1 deletion package.evm.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@depay/web3-payments-evm",
"moduleName": "Web3Payments",
"version": "13.6.0",
"version": "13.6.1",
"description": "JavaScript library to scan crypto wallets for liquefiable assets and perform cost-effective, auto-converted payments on-chain.",
"main": "dist/umd/index.evm.js",
"module": "dist/esm/index.evm.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@depay/web3-payments",
"moduleName": "Web3Payments",
"version": "13.6.0",
"version": "13.6.1",
"description": "JavaScript library to scan crypto wallets for liquefiable assets and perform cost-effective, auto-converted payments on-chain.",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion package.solana.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@depay/web3-payments-solana",
"moduleName": "Web3Payments",
"version": "13.6.0",
"version": "13.6.1",
"description": "JavaScript library to scan crypto wallets for liquefiable assets and perform cost-effective, auto-converted payments on-chain.",
"main": "dist/umd/index.solana.js",
"module": "dist/esm/index.solana.js",
Expand Down
3 changes: 3 additions & 0 deletions src/costs.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ const getBlockchainCost = (blockchain) => {
case 'bsc':
return 0.20
break;
case 'base':
return 0.25
break;
case 'arbitrum':
return 0.30
break;
Expand Down

0 comments on commit 17cd39d

Please sign in to comment.