Skip to content

Commit

Permalink
add support for Base Goerli network
Browse files Browse the repository at this point in the history
  • Loading branch information
blackghost1987 committed May 9, 2023
1 parent 47c6f8a commit 28687de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kycdao/kycdao-sdk",
"version": "0.6.15",
"version": "0.6.16",
"description": "kycDAO SDK for TypeScript and JavaScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const EvmBlockchainNetworks = {
EthereumMainnet: 'EthereumMainnet',
PolygonMainnet: 'PolygonMainnet',
PolygonMumbai: 'PolygonMumbai',
BaseGoerli: 'BaseGoerli',
} as const;

/**
Expand Down
1 change: 1 addition & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ export function getChainExplorerUrlForTransaction(
SolanaDevnet: '?cluster=devnet',
SolanaMainnet: '',
SolanaTestnet: '?cluster=testnet',
BaseGoerli: '',
};

const { url, transaction_path } = networkDetails.explorer;
Expand Down

0 comments on commit 28687de

Please sign in to comment.