File tree Expand file tree Collapse file tree 5 files changed +17
-0
lines changed Expand file tree Collapse file tree 5 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 127127 "@macalinao/solana-batch-accounts-loader": "workspace:^",
128128 "@macalinao/token-utils": "workspace:^",
129129 "@macalinao/zod-solana": "workspace:^",
130+ "@solana-program/address-lookup-table": "^0.7.0",
130131 "@solana-program/token": "^0.6.0",
131132 },
132133 "devDependencies": {
Original file line number Diff line number Diff line change 5353 "@macalinao/solana-batch-accounts-loader" : " workspace:^" ,
5454 "@macalinao/token-utils" : " workspace:^" ,
5555 "@macalinao/zod-solana" : " workspace:^" ,
56+ "@solana-program/address-lookup-table" : " ^0.7.0" ,
5657 "@solana-program/token" : " ^0.6.0"
5758 },
5859 "devDependencies" : {
Original file line number Diff line number Diff line change 1+ import {
2+ createDecodedAccountHook ,
3+ createDecodedAccountsHook ,
4+ } from "@macalinao/grill" ;
5+ import { getAddressLookupTableDecoder } from "@solana-program/address-lookup-table" ;
6+
7+ export const useAddressLookupTable = createDecodedAccountHook (
8+ getAddressLookupTableDecoder ( ) ,
9+ ) ;
10+
11+ export const useAddressLookupTables = createDecodedAccountsHook (
12+ getAddressLookupTableDecoder ( ) ,
13+ ) ;
Original file line number Diff line number Diff line change 1+ export * from "./address-lookup-table.js" ;
Original file line number Diff line number Diff line change 11export { SolanaProvider , useSolanaClient } from "@gillsdk/react" ;
22export * from "@macalinao/gill-extra" ;
3+ export * from "./accounts/index.js" ;
34export * from "./contexts/index.js" ;
45export * from "./hooks/index.js" ;
56export * from "./providers/index.js" ;
You can’t perform that action at this time.
0 commit comments