Create account form should be using suffix from Linkdrop (i.e. linkdrop contract name)
See original GitHub issueProblem
Accounts created from Linkdrop have to use Linkdrop contract name as a suffix. However right now there is one hardcoded suffix (specified in env variable) for all cases.
Expected Behavior
Account name selection control uses proper account suffix for a given linkdrop. When you proceed to create account – it gets used as well.
Steps to reproduce
- Create linkdrop using a contract not matching default process for given network (i.e. using something else than
.testnet
with testnet wallet). - Try to claim it.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Introducing the linkdrop contract we can use - NEAR docs
Using NEAR CLI, a person can create a mainnet account by calling the linkdrop contract, like shown below: The above command calls the...
Read more >Account Creation: Improve Funding UX w/ Temporary Faucet · Issue ...
Implement a temporary faucet to temporarily fund a new user's chosen Account ID ... Create account form should be using suffix from Linkdrop...
Read more >Liquid objects: linklist - Shopify.dev
Liquid objects represent variables that you can use to build your theme. Object types include store resources, standard Shopify content, and functional ...
Read more >Vircom inc.
VOP Radius now omits users with service type 8 (Authenticate-Only) and ... VOP Radius console and server able to read both old and...
Read more >Policy Secure Administration Guide - Product Documentation - Ivanti
You can open a case with Ivanti Global Support Center on the Web or by ... Select the User may specify the realm...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Example case:
wallet.near.org/create/linkdrop.contract.account/someKey?suffix=vlad.near
my-account
in the inputlinkdrop.contract.account
and the username becomesmy-account.vlad.near
Looks like it’s not as easy – linkdrop contract can be calling into
near
ortestnet
to create account with normal prefix.So if we want to implement this – needs to pass separate argument for suffix (vs relying on contract name).