Skip to content

Commit d147f07

Browse files
authored
update atom mainnet rpc (#65)
1 parent a6c2c5d commit d147f07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kilnfi/sdk",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"autor": "Kiln <[email protected]> (https://kiln.fi)",
55
"license": "BUSL-1.1",
66
"description": "JavaScript sdk for Kiln API",

src/services/atom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class AtomService extends Service {
2727

2828
constructor({ testnet }: ServiceProps) {
2929
super({ testnet });
30-
this.rpc = this.testnet ? 'https://rpc.sentry-02.theta-testnet.polypore.xyz' : 'https://rpc.atomscan.com';
30+
this.rpc = this.testnet ? 'https://rpc.sentry-02.theta-testnet.polypore.xyz' : 'https://cosmos-rpc.polkachu.com';
3131
}
3232

3333
private async getClient(): Promise<StargateClient> {

0 commit comments

Comments
 (0)