We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69b4fc4 commit aecce3cCopy full SHA for aecce3c
README.md
@@ -70,7 +70,7 @@ async function signTransactions(txns) {
70
// Warning: Browser will block pop-up if user doesn't trigger lute.signData() with a button click
71
async function authenticate() {
72
try {
73
- const siwxRequest: Siwx = {
+ const siwaRequest: Siwa = {
74
domain: location.host,
75
chain_id: "283",
76
account_address: activeAccount.value.address,
@@ -83,7 +83,7 @@ async function authenticate() {
83
"issued-at": new Date().toISOString(),
84
};
85
86
- const data = Buffer.from(JSON.stringify(siwxRequest)).toString("base64");
+ const data = Buffer.from(JSON.stringify(siwaRequest)).toString("base64");
87
const metadata: SignMetadata = {
88
scope: ScopeType.AUTH,
89
encoding: "base64",
0 commit comments