We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05ce51d commit 8b4ced2Copy full SHA for 8b4ced2
1 file changed
turnkey/src/app/actions.ts
@@ -37,10 +37,10 @@ export const createSubOrganization = async (
37
userName: string
38
) => {
39
const createSubOrgResponse = await turnkeyServer.createSubOrganization({
40
- subOrganizationName: "EVM Sub Org",
+ subOrganizationName: `User Sub Org - ${userName}`,
41
rootUsers: [
42
{
43
- userName: "Default User Name",
+ userName,
44
userEmail: email,
45
apiKeys: [],
46
authenticators: [
@@ -55,7 +55,7 @@ export const createSubOrganization = async (
55
],
56
rootQuorumThreshold: 1,
57
wallet: {
58
- walletName: "Default Wallet",
+ walletName: "Default EVM Wallet",
59
accounts: DEFAULT_ETHEREUM_ACCOUNTS,
60
},
61
});
0 commit comments