@axonfi/sdk 0.3.0 → 0.3.1

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.d.cts CHANGED
@@ -611,11 +611,6 @@ interface AxonClientConfig {
611
611
  * Provide either this or `account`.
612
612
  */
613
613
  botPrivateKey?: Hex;
614
- /**
615
- * Relayer base URL. Defaults to https://relay.axonfi.xyz.
616
- * Override only for local development or self-hosted relayers.
617
- */
618
- relayerUrl?: string;
619
614
  }
620
615
 
621
616
  /**
package/dist/index.d.ts CHANGED
@@ -611,11 +611,6 @@ interface AxonClientConfig {
611
611
  * Provide either this or `account`.
612
612
  */
613
613
  botPrivateKey?: Hex;
614
- /**
615
- * Relayer base URL. Defaults to https://relay.axonfi.xyz.
616
- * Override only for local development or self-hosted relayers.
617
- */
618
- relayerUrl?: string;
619
614
  }
620
615
 
621
616
  /**
package/dist/index.js CHANGED
@@ -3061,7 +3061,7 @@ var AxonClient = class {
3061
3061
  constructor(config) {
3062
3062
  this.vaultAddress = config.vaultAddress;
3063
3063
  this.chainId = config.chainId;
3064
- this.relayerUrl = (config.relayerUrl ?? "https://relay.axonfi.xyz").replace(/\/$/, "");
3064
+ this.relayerUrl = "https://relay.axonfi.xyz";
3065
3065
  if (!config.botPrivateKey) {
3066
3066
  throw new Error("botPrivateKey is required in AxonClientConfig");
3067
3067
  }