Skip to content

Commit

Permalink
update: RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
EasonC13 committed Dec 15, 2023
1 parent 3e6e95e commit 2c41c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/getSuiProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let getSuiProvider = (network = 'mainnet') => {
return new JsonRpcProvider(connection);
} else if (network == 'testnet') {
let connection = new Connection({
fullnode: 'https://sui-testnet-endpoint.blockvision.org',
fullnode: 'https://fullnode.testnet.sui.io:443',
});
return new JsonRpcProvider(connection);
} else if (network == 'devnet') {
Expand Down

0 comments on commit 2c41c87

Please sign in to comment.