@rialo/ts-cdk 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -454,7 +454,7 @@ var DEFAULT_NUM_ACCOUNTS = 1;
|
|
|
454
454
|
var URL_MAINNET = "https://mainnet.rialo.io:4101";
|
|
455
455
|
var URL_TESTNET = "https://testnet.rialo.io:4101";
|
|
456
456
|
var URL_DEVNET = "https://devnet.rialo.io:4101";
|
|
457
|
-
var URL_LOCALNET = "http://localhost:
|
|
457
|
+
var URL_LOCALNET = "http://localhost:4104";
|
|
458
458
|
var RIALO_MAINNET_CHAIN = {
|
|
459
459
|
id: "rialo:mainnet",
|
|
460
460
|
name: "Mainnet",
|
|
@@ -6904,7 +6904,7 @@ var QueryRpcClient = class extends BaseRpcClient {
|
|
|
6904
6904
|
* ```
|
|
6905
6905
|
*/
|
|
6906
6906
|
async getSignaturesForAddress(address, config) {
|
|
6907
|
-
const result = await this.call("getSignaturesForAddress", [address.toString(), config ?? {}]);
|
|
6907
|
+
const result = await this.call("getSignaturesForAddress", [{ address: address.toString(), config: config ?? {} }]);
|
|
6908
6908
|
return {
|
|
6909
6909
|
context: {
|
|
6910
6910
|
slot: BigInt(result.context.slot),
|