(pubkey: web3.PublicKey)
| 11 | } |
| 12 | |
| 13 | export function findUserMetaAddress(pubkey: web3.PublicKey) { |
| 14 | return web3.PublicKey.findProgramAddressSync( |
| 15 | [Buffer.from("USER_META"), pubkey.toBuffer()], |
| 16 | global.program.programId |
| 17 | ) |
| 18 | } |
| 19 | |
| 20 | export function appAccountKey( |
| 21 | auth: web3.PublicKey, |