@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.mjs CHANGED
@@ -452,7 +452,7 @@ var DEFAULT_NUM_ACCOUNTS = 1;
452
452
  var URL_MAINNET = "https://mainnet.rialo.io:4101";
453
453
  var URL_TESTNET = "https://testnet.rialo.io:4101";
454
454
  var URL_DEVNET = "https://devnet.rialo.io:4101";
455
- var URL_LOCALNET = "http://localhost:4100";
455
+ var URL_LOCALNET = "http://localhost:4104";
456
456
  var RIALO_MAINNET_CHAIN = {
457
457
  id: "rialo:mainnet",
458
458
  name: "Mainnet",
@@ -6902,7 +6902,7 @@ var QueryRpcClient = class extends BaseRpcClient {
6902
6902
  * ```
6903
6903
  */
6904
6904
  async getSignaturesForAddress(address, config) {
6905
- const result = await this.call("getSignaturesForAddress", [address.toString(), config ?? {}]);
6905
+ const result = await this.call("getSignaturesForAddress", [{ address: address.toString(), config: config ?? {} }]);
6906
6906
  return {
6907
6907
  context: {
6908
6908
  slot: BigInt(result.context.slot),