-
Notifications
You must be signed in to change notification settings - Fork 700
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow parachain to renew lease without actually run another parachain #720
Comments
related to paritytech/polkadot#6592 |
As far as I understand, this issue only applies to crowd loans as a means to extend slots. The main issue for this is #877 Self-bidding on auctions is possible without the mentioned problem. |
We have self-bidding para and have exactly this issue. |
There are two things clashing here:
|
related: #877 |
closed by #1290 |
claravanstaden
pushed a commit
to Snowfork/polkadot-sdk
that referenced
this issue
Dec 8, 2023
* Update parachain test commands * Shorten pnpm commands * Whitespace * Remove unused imports & constants * Use struct shorthand * Simplify benchmark commands * Enable linting for api * Include ts scripts in test package * Install missing dependencies for test scripts * Ignore XCM transfer script & remove types package
helin6
pushed a commit
to boolnetwork/polkadot-sdk
that referenced
this issue
Feb 5, 2024
* primitives: unify Cargo.toml format Signed-off-by: koushiro <koushiro.cqx@gmail.com> * frame: unify Cargo.toml format Signed-off-by: koushiro <koushiro.cqx@gmail.com> * client: unify Cargo.toml format Signed-off-by: koushiro <koushiro.cqx@gmail.com> * template: unify Cargo.toml format Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Use evm 01bcbd2205a212c34451d3b4fabc962793b057d3 Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Add taplo.toml config for checking Cargo.toml format Signed-off-by: koushiro <koushiro.cqx@gmail.com>
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 8, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 8, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 8, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 8, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 9, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 9, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 9, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 9, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 9, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 9, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 10, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
serban300
pushed a commit
to serban300/polkadot-sdk
that referenced
this issue
Apr 10, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
bkchr
pushed a commit
that referenced
this issue
Apr 10, 2024
* Add simple rate limiting mechanism * Add tests * Small test cleanup * Hook MaxRequests into runtimes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
One way to renew lease of a parachain is by perform lease swap with another parachain with an active lease. Many parachain teams are using this strategy to bid parachain slots before lease ends to secure future leases.
However, to in order to swap lease, it requires a XCM from both parachain to call
swap
. This means parachain team will have to build, run, and operate one more parachain just to renew the lease.IMO this is unnecessary work for everyone. The parachain owner should be able to call swap without actually run the parachain.
The text was updated successfully, but these errors were encountered: