tiding up GoogleAuth

This commit is contained in:
Samuel Andert
2023-07-25 12:16:44 +02:00
parent f2e9100766
commit c47cf1e338
3 changed files with 71 additions and 146 deletions

View File

@ -5,31 +5,31 @@
layout: `
grid-template-areas:
"auth",
"login",
"play",
"hello"
grid-template-rows: auto 1fr 1fr;
"hello",
"google"
grid-template-rows: 1fr 1fr;
`,
children: [
{
id: 'authsig',
componentName: 'AuthSig',
slot: 'auth'
},
{
id: 'wallet1',
componentName: 'Wallet',
slot: 'play',
state: {
rpcURL: 'https://rpc.gnosischain.com/',
pkpPubKey:
'046da3ba67065fd1e2726242ca01cd4601524893f4aa4b0042578fa6cbec28fa8c9a28eb9f7893932fc09717edc9e1db57e157a21eed346247c1db5a722a01f571'
}
},
{
id: 'hello',
componentName: 'GoogleAuth',
componentName: 'HelloEarth',
slot: 'hello',
services: ['messages']
},
// {
// id: 'wallet1',
// componentName: 'Wallet',
// slot: 'play',
// state: {
// rpcURL: 'https://rpc.gnosischain.com/',
// pkpPubKey:
// '046da3ba67065fd1e2726242ca01cd4601524893f4aa4b0042578fa6cbec28fa8c9a28eb9f7893932fc09717edc9e1db57e157a21eed346247c1db5a722a01f571'
// }
// },
{
id: 'google',
componentName: 'GoogleAuth',
slot: 'google',
services: ['setupLitProvider']
}
]