Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerstock committed Oct 22, 2024
1 parent 2593fb7 commit d20e5a5
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,36 +131,36 @@ const ethSignTypedDataV4Shortcuts: (chainId: number) => ShortcutType[] = (chainI
},
},
{
key: "Grant Permission",
key: 'Grant Permission',
data: {
message: {
domain: {
name: "Spend Permission Manager",
version: "1",
chainId: chainId,
verifyingContract: "0x4ba47ee994d7fd63e8e8029431c35afa8487b8a5"
name: 'Spend Permission Manager',
version: '1',
chainId,
verifyingContract: '0x4ba47ee994d7fd63e8e8029431c35afa8487b8a5',
},
types: {
SpendPermission: [
{name: "account", type: "address"},
{name: "spender", type: "address"},
{name: "token", type: "address"},
{name: "start", type: "uint48"},
{name: "end", type: "uint48"},
{name: "period", type: "uint48"},
{name: "allowance", type: "uint160"}
]
{ name: 'account', type: 'address' },
{ name: 'spender', type: 'address' },
{ name: 'token', type: 'address' },
{ name: 'start', type: 'uint48' },
{ name: 'end', type: 'uint48' },
{ name: 'period', type: 'uint48' },
{ name: 'allowance', type: 'uint160' },
],
},
primaryType: "SpendPermission",
primaryType: 'SpendPermission',
message: {
account: '0xd4e17478581878A967aA22d45a5158A9fE96AA08',
spender: "0x0000000000000000000000000000000000000000",
token: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
spender: '0x0000000000000000000000000000000000000000',
token: '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE',
end: 17242884802,
start: 1724264802,
period: 86400,
allowance: "10000000000000000"
}
allowance: '10000000000000000',
},
},
address: ADDR_TO_FILL,
},
Expand Down

0 comments on commit d20e5a5

Please sign in to comment.