parent
54ba4e85df
commit
4e03241997
10
Anchor.toml
10
Anchor.toml
|
@ -1,18 +1,18 @@
|
|||
[provider]
|
||||
# cluster = "devnet"
|
||||
cluster = "localnet"
|
||||
cluster = "devnet"
|
||||
# cluster = "localnet"
|
||||
wallet = "../payer-keypair.json"
|
||||
# wallet = "~/.config/solana/id.json"
|
||||
|
||||
[programs.localnet]
|
||||
anchor_feed_parser = "7Th37Bvb7u2sS4Xe6YkvCkHSHDAakRUeobRBNXuf2PFD"
|
||||
anchor_vrf_parser = "GCam9zJ6soszC4K69Gy84krGdeALxwS2noeBwqLmP6JH"
|
||||
anchor_feed_parser = "FnsPs665aBSwJRu2A8wGv6ZT76ipR41kHm4hoA3B1QGh"
|
||||
anchor_vrf_parser = "HjjRFjCyQH3ne6Gg8Yn3TQafrrYecRrphwLwnh2A26vM"
|
||||
|
||||
[registry]
|
||||
url = "https://anchor.projectserum.com"
|
||||
|
||||
[scripts]
|
||||
test = "yarn run ts-mocha -p ./tsconfig.testing.json -t 1000000 ./programs/*/tests/*.test.ts"
|
||||
test = "yarn run ts-mocha -p ./tsconfig.testing.json -t 1000000 ./programs/anchor-vrf-parser/tests/*.test.ts"
|
||||
|
||||
|
||||
[test.validator]
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"@oclif/plugin-version": "^1.0.4",
|
||||
"@oclif/plugin-warn-if-update-available": "^2.0.4",
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/spl-token": "^0.1.8",
|
||||
"@solana/spl-token": "^0.2.0",
|
||||
"@solana/web3.js": "^1.43.5",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.25",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114",
|
||||
|
|
|
@ -145,9 +145,19 @@ export default class AggregatorCreateCopy extends BaseCommand {
|
|||
publicKey: new PublicKey(flags.queueKey),
|
||||
});
|
||||
const queue = await queueAccount.loadData();
|
||||
const tokenMint = await queueAccount.loadMint();
|
||||
const mint = await queueAccount.loadMint();
|
||||
const tokenWallet = (
|
||||
await tokenMint.getOrCreateAssociatedAccountInfo(payerKeypair.publicKey)
|
||||
await spl.getOrCreateAssociatedTokenAccount(
|
||||
this.program.provider.connection,
|
||||
payerKeypair,
|
||||
mint.address,
|
||||
payerKeypair.publicKey,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
)
|
||||
).address;
|
||||
|
||||
const createAccountInstructions: (
|
||||
|
@ -183,12 +193,12 @@ export default class AggregatorCreateCopy extends BaseCommand {
|
|||
queueAccount,
|
||||
aggregatorAccount
|
||||
);
|
||||
const leaseEscrow = await spl.Token.getAssociatedTokenAddress(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
const leaseEscrow = await spl.getAssociatedTokenAddress(
|
||||
mint.address,
|
||||
leaseAccount.publicKey,
|
||||
true
|
||||
true,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
createAccountInstructions.push(
|
||||
|
@ -260,13 +270,13 @@ export default class AggregatorCreateCopy extends BaseCommand {
|
|||
|
||||
createAccountInstructions.push(
|
||||
[
|
||||
spl.Token.createAssociatedTokenAccountInstruction(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createAssociatedTokenAccountInstruction(
|
||||
payerKeypair.publicKey,
|
||||
leaseEscrow,
|
||||
leaseAccount.publicKey,
|
||||
payerKeypair.publicKey
|
||||
payerKeypair.publicKey,
|
||||
mint.address,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
),
|
||||
await this.program.methods
|
||||
.leaseInit({
|
||||
|
@ -287,7 +297,7 @@ export default class AggregatorCreateCopy extends BaseCommand {
|
|||
tokenProgram: spl.TOKEN_PROGRAM_ID,
|
||||
escrow: leaseEscrow,
|
||||
owner: payerKeypair.publicKey,
|
||||
mint: tokenMint.publicKey,
|
||||
mint: mint.address,
|
||||
})
|
||||
// .remainingAccounts(
|
||||
// jobPubkeys.concat(jobWallets).map((pubkey: PublicKey) => {
|
||||
|
|
|
@ -109,12 +109,18 @@ export default class AggregatorCreate extends BaseCommand {
|
|||
publicKey: new PublicKey(args.queueKey),
|
||||
});
|
||||
const queue = await queueAccount.loadData();
|
||||
const switchTokenMint = await queueAccount.loadMint();
|
||||
const tokenWallet = (
|
||||
await switchTokenMint.getOrCreateAssociatedAccountInfo(
|
||||
payerKeypair.publicKey
|
||||
)
|
||||
).address;
|
||||
const mint = await queueAccount.loadMint();
|
||||
const tokenWallet = await spl.getOrCreateAssociatedTokenAccount(
|
||||
this.program.provider.connection,
|
||||
payerKeypair,
|
||||
mint.address,
|
||||
payerKeypair.publicKey,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
const createAccountInstructions: (
|
||||
| TransactionInstruction
|
||||
|
@ -178,7 +184,7 @@ export default class AggregatorCreate extends BaseCommand {
|
|||
})
|
||||
.accounts({
|
||||
job: jobKeypair.publicKey,
|
||||
authorWallet: tokenWallet,
|
||||
authorWallet: tokenWallet.address,
|
||||
authority: feedAuthority.publicKey,
|
||||
programState: programStateAccount.publicKey,
|
||||
})
|
||||
|
@ -248,7 +254,7 @@ export default class AggregatorCreate extends BaseCommand {
|
|||
aggregator: aggregatorKeypair.publicKey,
|
||||
authority: feedAuthority.publicKey,
|
||||
queue: queueAccount.publicKey,
|
||||
authorWallet: tokenWallet,
|
||||
authorWallet: tokenWallet.address,
|
||||
programState: programStateAccount.publicKey,
|
||||
})
|
||||
.instruction(),
|
||||
|
@ -286,22 +292,22 @@ export default class AggregatorCreate extends BaseCommand {
|
|||
queueAccount,
|
||||
aggregatorAccount
|
||||
);
|
||||
const leaseEscrow = await spl.Token.getAssociatedTokenAddress(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
switchTokenMint.publicKey,
|
||||
const leaseEscrow = await spl.getAssociatedTokenAddress(
|
||||
mint.address,
|
||||
leaseAccount.publicKey,
|
||||
true
|
||||
true,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
createAccountInstructions.push(
|
||||
[
|
||||
spl.Token.createAssociatedTokenAccountInstruction(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
switchTokenMint.publicKey,
|
||||
spl.createAssociatedTokenAccountInstruction(
|
||||
payerKeypair.publicKey,
|
||||
leaseEscrow,
|
||||
leaseAccount.publicKey,
|
||||
payerKeypair.publicKey
|
||||
payerKeypair.publicKey,
|
||||
mint.address,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
),
|
||||
await this.program.methods
|
||||
.leaseInit({
|
||||
|
@ -317,12 +323,12 @@ export default class AggregatorCreate extends BaseCommand {
|
|||
queue: queueAccount.publicKey,
|
||||
aggregator: aggregatorAccount.publicKey,
|
||||
systemProgram: SystemProgram.programId,
|
||||
funder: tokenWallet,
|
||||
funder: tokenWallet.address,
|
||||
payer: payerKeypair.publicKey,
|
||||
tokenProgram: spl.TOKEN_PROGRAM_ID,
|
||||
escrow: leaseEscrow,
|
||||
owner: payerKeypair.publicKey,
|
||||
mint: switchTokenMint.publicKey,
|
||||
mint: mint.address,
|
||||
})
|
||||
// .remainingAccounts(
|
||||
// jobPubkeys.concat(jobWallets).map((pubkey: PublicKey) => {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { PublicKey } from "@solana/web3.js";
|
||||
import { getOrCreateSwitchboardMintTokenAccount } from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
AggregatorAccount,
|
||||
OracleQueueAccount,
|
||||
programWallet,
|
||||
} from "@switchboard-xyz/switchboard-v2";
|
||||
import chalk from "chalk";
|
||||
import BaseCommand from "../../BaseCommand";
|
||||
|
@ -44,11 +44,10 @@ export default class AggregatorUpdate extends BaseCommand {
|
|||
|
||||
const mint = await oracleQueueAccount.loadMint();
|
||||
|
||||
const payoutWallet = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(
|
||||
programWallet(this.program).publicKey
|
||||
)
|
||||
).address;
|
||||
const payoutWallet = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint
|
||||
);
|
||||
|
||||
const aggregatorUpdateTxn = await aggregatorAccount.openRound({
|
||||
oracleQueueAccount,
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { PublicKey } from "@solana/web3.js";
|
||||
import { getOrCreateSwitchboardMintTokenAccount } from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
CrankAccount,
|
||||
OracleQueueAccount,
|
||||
|
@ -54,12 +55,15 @@ export default class CrankTurn extends BaseCommand {
|
|||
const progamState = await programStateAccount.loadData();
|
||||
|
||||
// get payer payout wallet
|
||||
const switchboardMint = await programStateAccount.getTokenMint();
|
||||
const payoutWalletAccountInfo =
|
||||
await switchboardMint.getOrCreateAssociatedAccountInfo(payer.publicKey);
|
||||
const mint = await programStateAccount.getTokenMint();
|
||||
const payoutTokenAddress = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint,
|
||||
payer
|
||||
);
|
||||
|
||||
const txn = await crankAccount.pop({
|
||||
payoutWallet: payoutWalletAccountInfo.address,
|
||||
payoutWallet: payoutTokenAddress,
|
||||
queuePubkey: queueAccount.publicKey,
|
||||
queueAuthority: queue.authority,
|
||||
crank: 0,
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
import { Flags } from "@oclif/core";
|
||||
import * as anchor from "@project-serum/anchor";
|
||||
import { PublicKey } from "@solana/web3.js";
|
||||
import { prettyPrintLease } from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
getOrCreateSwitchboardMintTokenAccount,
|
||||
prettyPrintLease,
|
||||
} from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
AggregatorAccount,
|
||||
LeaseAccount,
|
||||
|
@ -66,11 +69,15 @@ export default class LeaseCreate extends BaseCommand {
|
|||
const mint = await oracleQueueAccount.loadMint();
|
||||
|
||||
// check funder has enough balance for the request
|
||||
const funder = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(payer.publicKey)
|
||||
).address;
|
||||
const funderTokenAddress = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint,
|
||||
payer
|
||||
);
|
||||
const funderBalanceResponse =
|
||||
await this.program.provider.connection.getTokenAccountBalance(funder);
|
||||
await this.program.provider.connection.getTokenAccountBalance(
|
||||
funderTokenAddress
|
||||
);
|
||||
const funderBalance = new anchor.BN(funderBalanceResponse.value.amount);
|
||||
if (loadAmount.gt(funderBalance)) {
|
||||
throw new Error(
|
||||
|
@ -99,7 +106,7 @@ export default class LeaseCreate extends BaseCommand {
|
|||
oracleQueueAccount,
|
||||
funderAuthority: payer,
|
||||
withdrawAuthority: payer.publicKey,
|
||||
funder,
|
||||
funder: funderTokenAddress,
|
||||
loadAmount,
|
||||
});
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ import * as anchor from "@project-serum/anchor";
|
|||
import { PublicKey } from "@solana/web3.js";
|
||||
import {
|
||||
chalkString,
|
||||
getOrCreateSwitchboardMintTokenAccount,
|
||||
verifyProgramHasPayer,
|
||||
} from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
|
@ -81,12 +82,13 @@ export default class LeaseExtend extends BaseCommand {
|
|||
const initialLeaseBalance =
|
||||
await this.program.provider.connection.getTokenAccountBalance(escrow);
|
||||
|
||||
const funderTokenAccount = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(payerKeypair.publicKey)
|
||||
).address;
|
||||
const funderTokenAddress = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint
|
||||
);
|
||||
const initialFunderBalance =
|
||||
await this.program.provider.connection.getTokenAccountBalance(
|
||||
funderTokenAccount
|
||||
funderTokenAddress
|
||||
);
|
||||
|
||||
if (!this.silent) {
|
||||
|
@ -108,7 +110,7 @@ export default class LeaseExtend extends BaseCommand {
|
|||
|
||||
const txn = await leaseAccount.extend({
|
||||
loadAmount: amount,
|
||||
funder: funderTokenAccount,
|
||||
funder: funderTokenAddress,
|
||||
funderAuthority: payerKeypair,
|
||||
});
|
||||
|
||||
|
|
|
@ -3,13 +3,13 @@ import * as anchor from "@project-serum/anchor";
|
|||
import { PublicKey } from "@solana/web3.js";
|
||||
import {
|
||||
chalkString,
|
||||
getOrCreateSwitchboardMintTokenAccount,
|
||||
verifyProgramHasPayer,
|
||||
} from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
AggregatorAccount,
|
||||
LeaseAccount,
|
||||
OracleQueueAccount,
|
||||
programWallet,
|
||||
} from "@switchboard-xyz/switchboard-v2";
|
||||
import chalk from "chalk";
|
||||
import BaseCommand from "../../BaseCommand";
|
||||
|
@ -82,11 +82,11 @@ export default class AggregatorLeaseWithdraw extends BaseCommand {
|
|||
} catch {
|
||||
try {
|
||||
const withdrawKeypair = await loadKeypair(flags.withdrawAddress);
|
||||
withdrawAddress = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(
|
||||
withdrawKeypair.publicKey
|
||||
)
|
||||
).address;
|
||||
withdrawAddress = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint,
|
||||
withdrawKeypair
|
||||
);
|
||||
} catch {
|
||||
throw new Error(
|
||||
`failed to parse withdrawAccount flag ${flags.withdrawAddress}`
|
||||
|
@ -94,11 +94,10 @@ export default class AggregatorLeaseWithdraw extends BaseCommand {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
withdrawAddress = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(
|
||||
programWallet(this.program).publicKey
|
||||
)
|
||||
).address;
|
||||
withdrawAddress = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint
|
||||
);
|
||||
}
|
||||
|
||||
const [leaseAccount] = LeaseAccount.fromSeed(
|
||||
|
|
|
@ -82,7 +82,7 @@ export default class OracleCreate extends BaseCommand {
|
|||
publicKey: new PublicKey(args.queueKey),
|
||||
});
|
||||
const queue = await queueAccount.loadData();
|
||||
const tokenMint = await queueAccount.loadMint();
|
||||
const mint = await queueAccount.loadMint();
|
||||
|
||||
const [programStateAccount, stateBump] = ProgramStateAccount.fromSeed(
|
||||
this.program
|
||||
|
@ -118,11 +118,11 @@ export default class OracleCreate extends BaseCommand {
|
|||
space: spl.AccountLayout.span,
|
||||
programId: spl.TOKEN_PROGRAM_ID,
|
||||
}),
|
||||
spl.Token.createInitAccountInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createInitializeAccountInstruction(
|
||||
tokenWalletKeypair.publicKey,
|
||||
programStateAccount.publicKey
|
||||
mint.address,
|
||||
programStateAccount.publicKey,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
await this.program.methods
|
||||
.oracleInit({
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
import { Flags } from "@oclif/core";
|
||||
import * as anchor from "@project-serum/anchor";
|
||||
import * as spl from "@solana/spl-token";
|
||||
import { PublicKey } from "@solana/web3.js";
|
||||
import { chalkString } from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
chalkString,
|
||||
getOrCreateSwitchboardMintTokenAccount,
|
||||
} from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
OracleAccount,
|
||||
OracleQueueAccount,
|
||||
|
@ -68,14 +72,15 @@ export default class OracleDeposit extends BaseCommand {
|
|||
).value.amount
|
||||
);
|
||||
|
||||
const funderTokenAccount = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(payer.publicKey)
|
||||
).address;
|
||||
const funderTokenAddress = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint
|
||||
);
|
||||
|
||||
const funderTokenBalance = new anchor.BN(
|
||||
(
|
||||
await this.program.provider.connection.getTokenAccountBalance(
|
||||
funderTokenAccount
|
||||
funderTokenAddress
|
||||
)
|
||||
).value.amount
|
||||
);
|
||||
|
@ -86,12 +91,17 @@ export default class OracleDeposit extends BaseCommand {
|
|||
);
|
||||
}
|
||||
|
||||
const txn = await mint.transfer(
|
||||
funderTokenAccount,
|
||||
const txn = await spl.transfer(
|
||||
this.program.provider.connection,
|
||||
payer,
|
||||
funderTokenAddress,
|
||||
oracle.tokenAccount,
|
||||
payer,
|
||||
[],
|
||||
amount.toNumber()
|
||||
|
||||
amount.toNumber(),
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
if (this.silent) {
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
import { Flags } from "@oclif/core";
|
||||
import * as anchor from "@project-serum/anchor";
|
||||
import { PublicKey } from "@solana/web3.js";
|
||||
import { chalkString } from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
chalkString,
|
||||
getOrCreateSwitchboardMintTokenAccount,
|
||||
} from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
OracleAccount,
|
||||
OracleQueueAccount,
|
||||
|
@ -119,11 +122,11 @@ export default class OracleWithdraw extends BaseCommand {
|
|||
} catch {
|
||||
try {
|
||||
const withdrawKeypair = await loadKeypair(flags.withdrawAccount);
|
||||
withdrawAccount = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(
|
||||
withdrawKeypair.publicKey
|
||||
)
|
||||
).address;
|
||||
withdrawAccount = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint,
|
||||
withdrawKeypair
|
||||
);
|
||||
} catch {
|
||||
throw new Error(
|
||||
`failed to parse withdrawAccount flag ${flags.withdrawAccount}`
|
||||
|
@ -131,11 +134,10 @@ export default class OracleWithdraw extends BaseCommand {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
withdrawAccount = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(
|
||||
programWallet(this.program).publicKey
|
||||
)
|
||||
).address;
|
||||
withdrawAccount = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint
|
||||
);
|
||||
}
|
||||
|
||||
const txn = await oracleAccount.withdraw({
|
||||
|
|
|
@ -17,7 +17,9 @@ export default class ProgramPrint extends BaseCommand {
|
|||
async run() {
|
||||
const [programState] = ProgramStateAccount.fromSeed(this.program);
|
||||
|
||||
this.logger.log(await prettyPrintProgramState(programState));
|
||||
this.logger.log(
|
||||
await prettyPrintProgramState(programState, undefined, true, true)
|
||||
);
|
||||
}
|
||||
|
||||
async catch(error) {
|
||||
|
|
|
@ -124,11 +124,12 @@ export default class QueueCreate extends BaseCommand {
|
|||
const [programStateAccount, stateBump] = ProgramStateAccount.fromSeed(
|
||||
this.program
|
||||
);
|
||||
const tokenMint = new spl.Token(
|
||||
|
||||
const mint = await spl.getMint(
|
||||
this.program.provider.connection,
|
||||
spl.NATIVE_MINT,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
payerKeypair
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
const createQueueTxns: (
|
||||
|
@ -152,11 +153,11 @@ export default class QueueCreate extends BaseCommand {
|
|||
space: spl.AccountLayout.span,
|
||||
programId: spl.TOKEN_PROGRAM_ID,
|
||||
}),
|
||||
spl.Token.createInitAccountInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createInitializeAccountInstruction(
|
||||
vaultKeypair.publicKey,
|
||||
payerKeypair.publicKey
|
||||
mint.address,
|
||||
payerKeypair.publicKey,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
await this.program.methods
|
||||
.programInit({
|
||||
|
@ -165,12 +166,12 @@ export default class QueueCreate extends BaseCommand {
|
|||
.accounts({
|
||||
state: programStateAccount.publicKey,
|
||||
authority: payerKeypair.publicKey,
|
||||
tokenMint: tokenMint.publicKey,
|
||||
tokenMint: mint.address,
|
||||
vault: vaultKeypair.publicKey,
|
||||
payer: payerKeypair.publicKey,
|
||||
systemProgram: SystemProgram.programId,
|
||||
tokenProgram: spl.TOKEN_PROGRAM_ID,
|
||||
daoMint: tokenMint.publicKey,
|
||||
daoMint: mint.address,
|
||||
})
|
||||
.instruction(),
|
||||
]);
|
||||
|
@ -227,7 +228,7 @@ export default class QueueCreate extends BaseCommand {
|
|||
buffer: queueBuffer.publicKey,
|
||||
systemProgram: SystemProgram.programId,
|
||||
payer: payerKeypair.publicKey,
|
||||
mint: tokenMint.publicKey,
|
||||
mint: mint.address,
|
||||
})
|
||||
.instruction()
|
||||
);
|
||||
|
@ -320,11 +321,11 @@ export default class QueueCreate extends BaseCommand {
|
|||
space: spl.AccountLayout.span,
|
||||
programId: spl.TOKEN_PROGRAM_ID,
|
||||
}),
|
||||
spl.Token.createInitAccountInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createInitializeAccountInstruction(
|
||||
tokenWalletKeypair.publicKey,
|
||||
programStateAccount.publicKey
|
||||
mint.address,
|
||||
programStateAccount.publicKey,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
await this.program.methods
|
||||
.oracleInit({
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
/* eslint-disable new-cap */
|
||||
import * as anchor from "@project-serum/anchor";
|
||||
import * as spl from "@solana/spl-token";
|
||||
import {
|
||||
AccountInfo,
|
||||
LAMPORTS_PER_SOL,
|
||||
NONCE_ACCOUNT_LENGTH,
|
||||
PublicKey,
|
||||
|
@ -65,7 +63,7 @@ export default class TestCommand extends BaseCommand {
|
|||
publicKey: oracle.queuePubkey,
|
||||
});
|
||||
const queue = await queueAccount.loadData();
|
||||
const tokenMint = await queueAccount.loadMint();
|
||||
const mint = await queueAccount.loadMint();
|
||||
const [programState, stateBump] = ProgramStateAccount.fromSeed(
|
||||
oracleAccount.program
|
||||
);
|
||||
|
@ -75,7 +73,7 @@ export default class TestCommand extends BaseCommand {
|
|||
queueAccount.publicKey,
|
||||
oracleAccount.publicKey
|
||||
);
|
||||
const balanceNeeded = await spl.Token.getMinBalanceRentForExemptAccount(
|
||||
const balanceNeeded = await spl.getMinimumBalanceForRentExemptAccount(
|
||||
oracleAccount.program.provider.connection
|
||||
);
|
||||
|
||||
|
@ -189,11 +187,11 @@ export default class TestCommand extends BaseCommand {
|
|||
space: spl.AccountLayout.span,
|
||||
programId: spl.TOKEN_PROGRAM_ID,
|
||||
}),
|
||||
spl.Token.createInitAccountInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.NATIVE_MINT,
|
||||
spl.createInitializeAccountInstruction(
|
||||
newAccount.publicKey,
|
||||
oracleAuthority.publicKey
|
||||
mint.address,
|
||||
oracleAuthority.publicKey,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
await oracleAccount.program.methods
|
||||
.oracleWithdraw({
|
||||
|
@ -214,12 +212,12 @@ export default class TestCommand extends BaseCommand {
|
|||
payer: oracleAuthority.publicKey,
|
||||
})
|
||||
.instruction(),
|
||||
spl.Token.createCloseAccountInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.createCloseAccountInstruction(
|
||||
newAccount.publicKey,
|
||||
oracleAuthority.publicKey,
|
||||
oracleAuthority.publicKey,
|
||||
[newAccount]
|
||||
[newAccount],
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -243,55 +241,3 @@ export default class TestCommand extends BaseCommand {
|
|||
super.catch(error, "test command failed");
|
||||
}
|
||||
}
|
||||
|
||||
function decodeTokenAccount(
|
||||
info: AccountInfo<Buffer>,
|
||||
pubkey: PublicKey
|
||||
): spl.AccountInfo {
|
||||
if (info === null) {
|
||||
throw new Error("FAILED_TO_FIND_ACCOUNT");
|
||||
}
|
||||
|
||||
if (!info.owner.equals(spl.TOKEN_PROGRAM_ID)) {
|
||||
throw new Error("INVALID_ACCOUNT_OWNER");
|
||||
}
|
||||
|
||||
if (info.data.length !== spl.AccountLayout.span) {
|
||||
throw new Error(`Invalid account size`);
|
||||
}
|
||||
|
||||
const data = Buffer.from(info.data);
|
||||
const accountInfo = spl.AccountLayout.decode(data);
|
||||
accountInfo.address = pubkey;
|
||||
accountInfo.mint = new PublicKey(accountInfo.mint);
|
||||
accountInfo.owner = new PublicKey(accountInfo.owner);
|
||||
accountInfo.amount = spl.u64.fromBuffer(accountInfo.amount);
|
||||
|
||||
if (accountInfo.delegateOption === 0) {
|
||||
accountInfo.delegate = undefined;
|
||||
accountInfo.delegatedAmount = new spl.u64(0);
|
||||
} else {
|
||||
accountInfo.delegate = new PublicKey(accountInfo.delegate);
|
||||
accountInfo.delegatedAmount = spl.u64.fromBuffer(
|
||||
accountInfo.delegatedAmount
|
||||
);
|
||||
}
|
||||
|
||||
accountInfo.isInitialized = accountInfo.state !== 0;
|
||||
accountInfo.isFrozen = accountInfo.state === 2;
|
||||
|
||||
if (accountInfo.isNativeOption === 1) {
|
||||
accountInfo.rentExemptReserve = spl.u64.fromBuffer(accountInfo.isNative);
|
||||
accountInfo.isNative = true;
|
||||
} else {
|
||||
accountInfo.rentExemptReserve = undefined;
|
||||
accountInfo.isNative = false;
|
||||
}
|
||||
|
||||
accountInfo.closeAuthority =
|
||||
accountInfo.closeAuthorityOption === 0
|
||||
? undefined
|
||||
: new PublicKey(accountInfo.closeAuthority);
|
||||
|
||||
return accountInfo;
|
||||
}
|
||||
|
|
|
@ -116,14 +116,15 @@ export default class VrfCreateExample extends BaseCommand {
|
|||
publicKey: new PublicKey(args.queueKey),
|
||||
});
|
||||
const queue = await queueAccount.loadData();
|
||||
const tokenMint = await queueAccount.loadMint();
|
||||
const vrfEscrowPubkey = await spl.Token.getAssociatedTokenAddress(
|
||||
tokenMint.associatedProgramId,
|
||||
tokenMint.programId,
|
||||
tokenMint.publicKey,
|
||||
const mint = await queueAccount.loadMint();
|
||||
const vrfEscrowPubkey = await spl.getAssociatedTokenAddress(
|
||||
mint.address,
|
||||
vrfSecret.publicKey,
|
||||
true
|
||||
true,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
const [permissionAccount, permissionBump] = PermissionAccount.fromSeed(
|
||||
this.program,
|
||||
queue.authority,
|
||||
|
@ -134,21 +135,21 @@ export default class VrfCreateExample extends BaseCommand {
|
|||
// create account txns
|
||||
const createTxn = new Transaction();
|
||||
createTxn.add(
|
||||
spl.Token.createAssociatedTokenAccountInstruction(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createAssociatedTokenAccountInstruction(
|
||||
payerKeypair.publicKey,
|
||||
vrfEscrowPubkey,
|
||||
vrfSecret.publicKey,
|
||||
payerKeypair.publicKey
|
||||
mint.address,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
),
|
||||
spl.Token.createSetAuthorityInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.createSetAuthorityInstruction(
|
||||
vrfEscrowPubkey,
|
||||
programStateAccount.publicKey,
|
||||
"AccountOwner",
|
||||
vrfSecret.publicKey,
|
||||
[payerKeypair, vrfSecret]
|
||||
spl.AuthorityType.AccountOwner,
|
||||
programStateAccount.publicKey,
|
||||
[payerKeypair, vrfSecret],
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
SystemProgram.createAccount({
|
||||
fromPubkey: payerKeypair.publicKey,
|
||||
|
|
|
@ -132,13 +132,13 @@ export default class VrfCreate extends BaseCommand {
|
|||
publicKey: new PublicKey(args.queueKey),
|
||||
});
|
||||
const queue = await queueAccount.loadData();
|
||||
const tokenMint = await queueAccount.loadMint();
|
||||
const vrfEscrowPubkey = await spl.Token.getAssociatedTokenAddress(
|
||||
tokenMint.associatedProgramId,
|
||||
tokenMint.programId,
|
||||
tokenMint.publicKey,
|
||||
const mint = await queueAccount.loadMint();
|
||||
const vrfEscrowPubkey = await spl.getAssociatedTokenAddress(
|
||||
mint.address,
|
||||
vrfSecret.publicKey,
|
||||
true
|
||||
true,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
const [permissionAccount, permissionBump] = PermissionAccount.fromSeed(
|
||||
this.program,
|
||||
|
@ -150,21 +150,21 @@ export default class VrfCreate extends BaseCommand {
|
|||
// create account txns
|
||||
const createTxn = new Transaction();
|
||||
createTxn.add(
|
||||
spl.Token.createAssociatedTokenAccountInstruction(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createAssociatedTokenAccountInstruction(
|
||||
payerKeypair.publicKey,
|
||||
vrfEscrowPubkey,
|
||||
vrfSecret.publicKey,
|
||||
payerKeypair.publicKey
|
||||
mint.address,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
),
|
||||
spl.Token.createSetAuthorityInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.createSetAuthorityInstruction(
|
||||
vrfEscrowPubkey,
|
||||
programStateAccount.publicKey,
|
||||
"AccountOwner",
|
||||
vrfSecret.publicKey,
|
||||
[payerKeypair, vrfSecret]
|
||||
spl.AuthorityType.AccountOwner,
|
||||
programStateAccount.publicKey,
|
||||
[payerKeypair, vrfSecret],
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
SystemProgram.createAccount({
|
||||
fromPubkey: payerKeypair.publicKey,
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { Flags } from "@oclif/core";
|
||||
import * as spl from "@solana/spl-token";
|
||||
import { PublicKey, SYSVAR_RECENT_BLOCKHASHES_PUBKEY } from "@solana/web3.js";
|
||||
import { getOrCreateSwitchboardMintTokenAccount } from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
OracleQueueAccount,
|
||||
PermissionAccount,
|
||||
|
@ -51,7 +52,7 @@ export default class VrfRequest extends BaseCommand {
|
|||
publicKey: vrf.oracleQueue,
|
||||
});
|
||||
const queue = await queueAccount.loadData();
|
||||
const tokenMint = await queueAccount.loadMint();
|
||||
const mint = await queueAccount.loadMint();
|
||||
const [programStateAccount, stateBump] = ProgramStateAccount.fromSeed(
|
||||
this.program
|
||||
);
|
||||
|
@ -67,11 +68,10 @@ export default class VrfRequest extends BaseCommand {
|
|||
? await loadKeypair(flags.funderAuthority)
|
||||
: payerKeypair;
|
||||
|
||||
const funderTokenWallet = (
|
||||
await tokenMint.getOrCreateAssociatedAccountInfo(
|
||||
funderAuthority.publicKey
|
||||
)
|
||||
).address;
|
||||
const funderTokenWallet = await getOrCreateSwitchboardMintTokenAccount(
|
||||
this.program,
|
||||
mint
|
||||
);
|
||||
|
||||
// const signature = await vrfAccount.requestRandomness({
|
||||
// authority,
|
||||
|
|
|
@ -3,6 +3,5 @@ export * from "./icons";
|
|||
export * from "./keypair";
|
||||
export * from "./misc";
|
||||
export * from "./sleep";
|
||||
export * from "./state";
|
||||
export * from "./switchboard";
|
||||
export * from "./toCluster";
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
import type * as anchor from "@project-serum/anchor";
|
||||
import type * as spl from "@solana/spl-token";
|
||||
import type { PublicKey } from "@solana/web3.js";
|
||||
import {
|
||||
ProgramStateAccount,
|
||||
programWallet,
|
||||
} from "@switchboard-xyz/switchboard-v2";
|
||||
|
||||
export const getOrCreateSwitchboardMintTokenAccount = async (
|
||||
program: anchor.Program,
|
||||
switchboardMint?: spl.Token
|
||||
): Promise<PublicKey> => {
|
||||
const payer = programWallet(program);
|
||||
|
||||
const returnAssociatedAddress = async (
|
||||
mint: spl.Token
|
||||
): Promise<PublicKey> => {
|
||||
const tokenAccount = await mint.getOrCreateAssociatedAccountInfo(
|
||||
payer.publicKey
|
||||
);
|
||||
return tokenAccount.address;
|
||||
};
|
||||
|
||||
let mint = switchboardMint;
|
||||
if (mint) {
|
||||
returnAssociatedAddress(mint);
|
||||
}
|
||||
|
||||
const [programState] = ProgramStateAccount.fromSeed(program);
|
||||
mint = await programState.getTokenMint();
|
||||
if (mint) {
|
||||
returnAssociatedAddress(mint);
|
||||
}
|
||||
|
||||
throw new Error(`failed to get associated token account`);
|
||||
};
|
|
@ -9,7 +9,13 @@
|
|||
"target": "es2019",
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"strictPropertyInitialization": false
|
||||
"strictPropertyInitialization": false,
|
||||
"paths": {
|
||||
"@solana/spl-token": [
|
||||
"../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
||||
},
|
||||
"files": ["src/index.ts"],
|
||||
"include": ["src/**/*"]
|
||||
|
|
|
@ -3,7 +3,11 @@
|
|||
"compilerOptions": {
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../libraries/ts"],
|
||||
"@switchboard-xyz/sbv2-utils": ["../libraries/sbv2-utils"]
|
||||
"@switchboard-xyz/sbv2-utils": ["../libraries/sbv2-utils"],
|
||||
"@solana/spl-token": [
|
||||
"../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
||||
},
|
||||
"references": [
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
"@orca-so/sdk": "^1.2.24",
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@saberhq/token-utils": "^1.12.68",
|
||||
"@solana/spl-token": "^0.1.8",
|
||||
"@solana/spl-token": "^0.2.0",
|
||||
"@solana/web3.js": "^1.42.0",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114",
|
||||
"big.js": "^6.1.1",
|
||||
|
|
|
@ -2,6 +2,7 @@ import * as anchor from "@project-serum/anchor";
|
|||
import * as spl from "@solana/spl-token";
|
||||
import {
|
||||
PublicKey,
|
||||
sendAndConfirmTransaction,
|
||||
SystemProgram,
|
||||
Transaction,
|
||||
TransactionInstruction,
|
||||
|
@ -85,17 +86,25 @@ export async function createAggregator(
|
|||
) {
|
||||
const payerKeypair = programWallet(program);
|
||||
const queue = await queueAccount.loadData();
|
||||
const switchTokenMint = await queueAccount.loadMint();
|
||||
const mint = await queueAccount.loadMint();
|
||||
const payerTokenWallet = (
|
||||
await switchTokenMint.getOrCreateAssociatedAccountInfo(
|
||||
payerKeypair.publicKey
|
||||
await spl.getOrCreateAssociatedTokenAccount(
|
||||
program.provider.connection,
|
||||
payerKeypair,
|
||||
mint.address,
|
||||
payerKeypair.publicKey,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
)
|
||||
).address;
|
||||
|
||||
// Aggregator params
|
||||
const aggregatorKeypair = params.keypair ?? anchor.web3.Keypair.generate();
|
||||
const authority = params.authority ?? payerKeypair.publicKey;
|
||||
const size = program.account.aggregatorAccountData!.size;
|
||||
const size = program.account.aggregatorAccountData.size;
|
||||
const [programStateAccount, stateBump] =
|
||||
ProgramStateAccount.fromSeed(program);
|
||||
const state = await programStateAccount.loadData();
|
||||
|
@ -118,12 +127,12 @@ export async function createAggregator(
|
|||
queueAccount,
|
||||
aggregatorAccount
|
||||
);
|
||||
const leaseEscrow = await spl.Token.getAssociatedTokenAddress(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
switchTokenMint.publicKey,
|
||||
const leaseEscrow = await spl.getAssociatedTokenAddress(
|
||||
mint.address,
|
||||
leaseAccount.publicKey,
|
||||
true
|
||||
true,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
// const jobPubkeys: Array<PublicKey> = [];
|
||||
|
@ -134,7 +143,7 @@ export async function createAggregator(
|
|||
// [
|
||||
// payerKeypair.publicKey.toBuffer(),
|
||||
// spl.TOKEN_PROGRAM_ID.toBuffer(),
|
||||
// switchTokenMint.publicKey.toBuffer(),
|
||||
// mint.address.toBuffer(),
|
||||
// ],
|
||||
// spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
// );
|
||||
|
@ -159,20 +168,21 @@ export async function createAggregator(
|
|||
programId: program.programId,
|
||||
}),
|
||||
// create aggregator
|
||||
await program.methods!.aggregatorInit!({
|
||||
name: (params.name ?? Buffer.from("")).slice(0, 32),
|
||||
metadata: (params.metadata ?? Buffer.from("")).slice(0, 128),
|
||||
batchSize: params.batchSize,
|
||||
minOracleResults: params.minRequiredOracleResults,
|
||||
minJobResults: params.minRequiredJobResults,
|
||||
minUpdateDelaySeconds: params.minUpdateDelaySeconds,
|
||||
varianceThreshold: SwitchboardDecimal.fromBig(
|
||||
new Big(params.varianceThreshold ?? 0)
|
||||
),
|
||||
forceReportPeriod: params.forceReportPeriod ?? new anchor.BN(0),
|
||||
expiration: params.expiration ?? new anchor.BN(0),
|
||||
stateBump,
|
||||
})
|
||||
await program.methods
|
||||
.aggregatorInit({
|
||||
name: (params.name ?? Buffer.from("")).slice(0, 32),
|
||||
metadata: (params.metadata ?? Buffer.from("")).slice(0, 128),
|
||||
batchSize: params.batchSize,
|
||||
minOracleResults: params.minRequiredOracleResults,
|
||||
minJobResults: params.minRequiredJobResults,
|
||||
minUpdateDelaySeconds: params.minUpdateDelaySeconds,
|
||||
varianceThreshold: SwitchboardDecimal.fromBig(
|
||||
new Big(params.varianceThreshold ?? 0)
|
||||
),
|
||||
forceReportPeriod: params.forceReportPeriod ?? new anchor.BN(0),
|
||||
expiration: params.expiration ?? new anchor.BN(0),
|
||||
stateBump,
|
||||
})
|
||||
.accounts({
|
||||
aggregator: aggregatorKeypair.publicKey,
|
||||
authority,
|
||||
|
@ -181,7 +191,8 @@ export async function createAggregator(
|
|||
programState: programStateAccount.publicKey,
|
||||
})
|
||||
.instruction(),
|
||||
await program.methods.permissionInit!({})
|
||||
await program.methods
|
||||
.permissionInit({})
|
||||
.accounts({
|
||||
permission: permissionAccount.publicKey,
|
||||
authority: params.authority,
|
||||
|
@ -192,31 +203,33 @@ export async function createAggregator(
|
|||
})
|
||||
.instruction(),
|
||||
payerKeypair.publicKey.equals(queue.authority)
|
||||
? await program.methods.permissionSet!({
|
||||
permission: { permitOracleQueueUsage: null },
|
||||
enable: true,
|
||||
})
|
||||
? await program.methods
|
||||
.permissionSet({
|
||||
permission: { permitOracleQueueUsage: null },
|
||||
enable: true,
|
||||
})
|
||||
.accounts({
|
||||
permission: permissionAccount.publicKey,
|
||||
authority: queue.authority,
|
||||
})
|
||||
.instruction()
|
||||
: undefined,
|
||||
spl.Token.createAssociatedTokenAccountInstruction(
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
switchTokenMint.publicKey,
|
||||
spl.createAssociatedTokenAccountInstruction(
|
||||
payerKeypair.publicKey,
|
||||
leaseEscrow,
|
||||
leaseAccount.publicKey,
|
||||
payerKeypair.publicKey
|
||||
payerKeypair.publicKey,
|
||||
mint.address,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
),
|
||||
await program.methods.leaseInit!({
|
||||
loadAmount: new anchor.BN(0),
|
||||
stateBump,
|
||||
leaseBump,
|
||||
withdrawAuthority: payerKeypair.publicKey,
|
||||
walletBumps: Buffer.from([]),
|
||||
})
|
||||
await program.methods
|
||||
.leaseInit({
|
||||
loadAmount: new anchor.BN(0),
|
||||
stateBump,
|
||||
leaseBump,
|
||||
withdrawAuthority: payerKeypair.publicKey,
|
||||
walletBumps: Buffer.from([]),
|
||||
})
|
||||
.accounts({
|
||||
programState: programStateAccount.publicKey,
|
||||
lease: leaseAccount.publicKey,
|
||||
|
@ -228,7 +241,7 @@ export async function createAggregator(
|
|||
tokenProgram: spl.TOKEN_PROGRAM_ID,
|
||||
escrow: leaseEscrow,
|
||||
owner: payerKeypair.publicKey,
|
||||
mint: switchTokenMint.publicKey,
|
||||
mint: mint.address,
|
||||
})
|
||||
// .remainingAccounts(
|
||||
// jobPubkeys.concat(jobWallets).map((pubkey: PublicKey) => {
|
||||
|
@ -238,9 +251,10 @@ export async function createAggregator(
|
|||
.instruction(),
|
||||
...(await Promise.all(
|
||||
jobs.map(async ([jobAccount, weight]) => {
|
||||
return program.methods.aggregatorAddJob!({
|
||||
weight,
|
||||
})
|
||||
return program.methods
|
||||
.aggregatorAddJob({
|
||||
weight,
|
||||
})
|
||||
.accounts({
|
||||
aggregator: aggregatorKeypair.publicKey,
|
||||
authority: payerKeypair.publicKey,
|
||||
|
@ -252,9 +266,11 @@ export async function createAggregator(
|
|||
].filter(Boolean) as TransactionInstruction[])
|
||||
);
|
||||
|
||||
const createSig = await program.provider.sendAndConfirm!(
|
||||
const createSig = await sendAndConfirmTransaction(
|
||||
program.provider.connection,
|
||||
new Transaction().add(...createIxns),
|
||||
[payerKeypair, aggregatorKeypair]
|
||||
);
|
||||
|
||||
return aggregatorAccount;
|
||||
}
|
||||
|
|
|
@ -17,6 +17,7 @@ import {
|
|||
} from "@switchboard-xyz/switchboard-v2";
|
||||
import type Big from "big.js";
|
||||
import chalk from "chalk";
|
||||
import { getIdlAddress, getProgramDataAddress } from "./anchor.js";
|
||||
import { anchorBNtoDateTimeString } from "./date.js";
|
||||
import type { SwitchboardAccountType } from "./switchboard.js";
|
||||
|
||||
|
@ -100,6 +101,8 @@ export const toVrfStatusString = (status: Record<string, unknown>): string => {
|
|||
export async function prettyPrintProgramState(
|
||||
programState: ProgramStateAccount,
|
||||
accountData?: any,
|
||||
printIdlAddress = false,
|
||||
printDataAddress = false,
|
||||
SPACING = 24
|
||||
): Promise<string> {
|
||||
const data = accountData ?? (await programState.loadData());
|
||||
|
@ -110,7 +113,19 @@ export async function prettyPrintProgramState(
|
|||
);
|
||||
outputString += chalkString("authority", data.authority, SPACING) + "\r\n";
|
||||
outputString += chalkString("tokenMint", data.tokenMint, SPACING) + "\r\n";
|
||||
outputString += chalkString("tokenVault", data.tokenVault, SPACING);
|
||||
outputString += chalkString("tokenVault", data.tokenVault, SPACING) + "\r\n";
|
||||
outputString += chalkString("daoMint", data.daoMint, SPACING);
|
||||
|
||||
if (printIdlAddress) {
|
||||
const idlAddress = await getIdlAddress(programState.program.programId);
|
||||
outputString += "\r\n" + chalkString("idlAddress", idlAddress, SPACING);
|
||||
}
|
||||
if (printDataAddress) {
|
||||
const dataAddress = getProgramDataAddress(programState.program.programId);
|
||||
outputString +=
|
||||
"\r\n" + chalkString("programDataAddress", dataAddress, SPACING);
|
||||
}
|
||||
|
||||
return outputString;
|
||||
}
|
||||
|
||||
|
|
|
@ -48,11 +48,11 @@ export async function createQueue(
|
|||
|
||||
const [programStateAccount, stateBump] =
|
||||
ProgramStateAccount.fromSeed(program);
|
||||
const tokenMint = new spl.Token(
|
||||
const mint = await spl.getMint(
|
||||
program.provider.connection,
|
||||
spl.NATIVE_MINT,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
payerKeypair
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
const ixns: (TransactionInstruction | TransactionInstruction[])[] = [];
|
||||
|
@ -73,24 +73,25 @@ export async function createQueue(
|
|||
space: spl.AccountLayout.span,
|
||||
programId: spl.TOKEN_PROGRAM_ID,
|
||||
}),
|
||||
spl.Token.createInitAccountInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createInitializeAccountInstruction(
|
||||
vaultKeypair.publicKey,
|
||||
payerKeypair.publicKey
|
||||
mint.address,
|
||||
payerKeypair.publicKey,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
await program.methods.programInit!({
|
||||
stateBump,
|
||||
})
|
||||
await program.methods
|
||||
.programInit({
|
||||
stateBump,
|
||||
})
|
||||
.accounts({
|
||||
state: programStateAccount.publicKey,
|
||||
authority: payerKeypair.publicKey,
|
||||
tokenMint: tokenMint.publicKey,
|
||||
tokenMint: mint.address,
|
||||
vault: vaultKeypair.publicKey,
|
||||
payer: payerKeypair.publicKey,
|
||||
systemProgram: SystemProgram.programId,
|
||||
tokenProgram: spl.TOKEN_PROGRAM_ID,
|
||||
daoMint: tokenMint.publicKey,
|
||||
daoMint: mint.address,
|
||||
})
|
||||
.instruction(),
|
||||
]);
|
||||
|
@ -132,32 +133,33 @@ export async function createQueue(
|
|||
),
|
||||
programId: program.programId,
|
||||
}),
|
||||
await program.methods.oracleQueueInit!({
|
||||
name: Buffer.from(params.name ?? "").slice(0, 32),
|
||||
metadata: Buffer.from("").slice(0, 64),
|
||||
reward: params.reward ? new anchor.BN(params.reward) : new anchor.BN(0),
|
||||
minStake: params.minStake
|
||||
? new anchor.BN(params.minStake)
|
||||
: new anchor.BN(0),
|
||||
// feedProbationPeriod: 0,
|
||||
oracleTimeout: params.oracleTimeout,
|
||||
slashingEnabled: false,
|
||||
varianceToleranceMultiplier: SwitchboardDecimal.fromBig(new Big(2)),
|
||||
authority: authorityKeypair.publicKey,
|
||||
// consecutiveFeedFailureLimit: new anchor.BN(1000),
|
||||
// consecutiveOracleFailureLimit: new anchor.BN(1000),
|
||||
minimumDelaySeconds: 5,
|
||||
queueSize: queueSize,
|
||||
unpermissionedFeeds: params.unpermissionedFeeds ?? false,
|
||||
unpermissionedVrf: params.unpermissionedVrf ?? false,
|
||||
})
|
||||
await program.methods
|
||||
.oracleQueueInit({
|
||||
name: Buffer.from(params.name ?? "").slice(0, 32),
|
||||
metadata: Buffer.from("").slice(0, 64),
|
||||
reward: params.reward ? new anchor.BN(params.reward) : new anchor.BN(0),
|
||||
minStake: params.minStake
|
||||
? new anchor.BN(params.minStake)
|
||||
: new anchor.BN(0),
|
||||
// feedProbationPeriod: 0,
|
||||
oracleTimeout: params.oracleTimeout,
|
||||
slashingEnabled: false,
|
||||
varianceToleranceMultiplier: SwitchboardDecimal.fromBig(new Big(2)),
|
||||
authority: authorityKeypair.publicKey,
|
||||
// consecutiveFeedFailureLimit: new anchor.BN(1000),
|
||||
// consecutiveOracleFailureLimit: new anchor.BN(1000),
|
||||
minimumDelaySeconds: 5,
|
||||
queueSize: queueSize,
|
||||
unpermissionedFeeds: params.unpermissionedFeeds ?? false,
|
||||
unpermissionedVrf: params.unpermissionedVrf ?? false,
|
||||
})
|
||||
.accounts({
|
||||
oracleQueue: queueKeypair.publicKey,
|
||||
authority: authorityKeypair.publicKey,
|
||||
buffer: queueBuffer.publicKey,
|
||||
systemProgram: SystemProgram.programId,
|
||||
payer: payerKeypair.publicKey,
|
||||
mint: tokenMint.publicKey,
|
||||
mint: mint.address,
|
||||
})
|
||||
.instruction(),
|
||||
anchor.web3.SystemProgram.createAccount({
|
||||
|
@ -170,11 +172,12 @@ export async function createQueue(
|
|||
),
|
||||
programId: program.programId,
|
||||
}),
|
||||
await program.methods.crankInit!({
|
||||
name: Buffer.from("Crank").slice(0, 32),
|
||||
metadata: Buffer.from("").slice(0, 64),
|
||||
crankSize: params.crankSize,
|
||||
})
|
||||
await program.methods
|
||||
.crankInit({
|
||||
name: Buffer.from("Crank").slice(0, 32),
|
||||
metadata: Buffer.from("").slice(0, 64),
|
||||
crankSize: params.crankSize,
|
||||
})
|
||||
.accounts({
|
||||
crank: crankKeypair.publicKey,
|
||||
queue: queueKeypair.publicKey,
|
||||
|
@ -224,18 +227,19 @@ export async function createQueue(
|
|||
space: spl.AccountLayout.span,
|
||||
programId: spl.TOKEN_PROGRAM_ID,
|
||||
}),
|
||||
spl.Token.createInitAccountInstruction(
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
tokenMint.publicKey,
|
||||
spl.createInitializeAccountInstruction(
|
||||
tokenWalletKeypair.publicKey,
|
||||
programStateAccount.publicKey
|
||||
mint.address,
|
||||
programStateAccount.publicKey,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
),
|
||||
await program.methods.oracleInit!({
|
||||
name: Buffer.from(name).slice(0, 32),
|
||||
metadata: Buffer.from("").slice(0, 128),
|
||||
stateBump,
|
||||
oracleBump,
|
||||
})
|
||||
await program.methods
|
||||
.oracleInit({
|
||||
name: Buffer.from(name).slice(0, 32),
|
||||
metadata: Buffer.from("").slice(0, 128),
|
||||
stateBump,
|
||||
oracleBump,
|
||||
})
|
||||
.accounts({
|
||||
oracle: oracleAccount.publicKey,
|
||||
oracleAuthority: authorityKeypair.publicKey,
|
||||
|
@ -246,7 +250,8 @@ export async function createQueue(
|
|||
payer: payerKeypair.publicKey,
|
||||
})
|
||||
.instruction(),
|
||||
await program.methods.permissionInit!({})
|
||||
await program.methods
|
||||
.permissionInit({})
|
||||
.accounts({
|
||||
permission: permissionAccount.publicKey,
|
||||
authority: authorityKeypair.publicKey,
|
||||
|
@ -256,10 +261,11 @@ export async function createQueue(
|
|||
systemProgram: SystemProgram.programId,
|
||||
})
|
||||
.instruction(),
|
||||
await program.methods.permissionSet!({
|
||||
permission: { permitOracleHeartbeat: null },
|
||||
enable: true,
|
||||
})
|
||||
await program.methods
|
||||
.permissionSet({
|
||||
permission: { permitOracleHeartbeat: null },
|
||||
enable: true,
|
||||
})
|
||||
.accounts({
|
||||
permission: permissionAccount.publicKey,
|
||||
authority: authorityKeypair.publicKey,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import type * as anchor from "@project-serum/anchor";
|
||||
import type * as spl from "@solana/spl-token";
|
||||
import * as spl from "@solana/spl-token";
|
||||
import type { PublicKey } from "@solana/web3.js";
|
||||
import {
|
||||
ProgramStateAccount,
|
||||
|
@ -8,15 +8,22 @@ import {
|
|||
|
||||
export const getOrCreateSwitchboardMintTokenAccount = async (
|
||||
program: anchor.Program,
|
||||
switchboardMint?: spl.Token
|
||||
switchboardMint?: spl.Mint,
|
||||
payer = programWallet(program)
|
||||
): Promise<PublicKey> => {
|
||||
const payer = programWallet(program);
|
||||
|
||||
const returnAssociatedAddress = async (
|
||||
mint: spl.Token
|
||||
mint: spl.Mint
|
||||
): Promise<PublicKey> => {
|
||||
const tokenAccount = await mint.getOrCreateAssociatedAccountInfo(
|
||||
payer.publicKey
|
||||
const tokenAccount = await spl.getOrCreateAssociatedTokenAccount(
|
||||
program.provider.connection,
|
||||
payer,
|
||||
mint.address,
|
||||
payer.publicKey,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
return tokenAccount.address;
|
||||
};
|
||||
|
|
|
@ -11,7 +11,7 @@ import { awaitOpenRound, createAggregator } from "../feed.js";
|
|||
|
||||
export interface ISwitchboardTestContext {
|
||||
program: anchor.Program;
|
||||
mint: spl.Token;
|
||||
mint: spl.Mint;
|
||||
payerTokenWallet: PublicKey;
|
||||
queue: sbv2.OracleQueueAccount;
|
||||
oracle?: sbv2.OracleAccount;
|
||||
|
@ -20,7 +20,7 @@ export interface ISwitchboardTestContext {
|
|||
export class SwitchboardTestContext implements ISwitchboardTestContext {
|
||||
program: anchor.Program;
|
||||
|
||||
mint: spl.Token;
|
||||
mint: spl.Mint;
|
||||
|
||||
payerTokenWallet: PublicKey;
|
||||
|
||||
|
@ -42,12 +42,14 @@ export class SwitchboardTestContext implements ISwitchboardTestContext {
|
|||
amount = 1_000_000
|
||||
): Promise<PublicKey> {
|
||||
const payerKeypair = sbv2.programWallet(program);
|
||||
return spl.Token.createWrappedNativeAccount(
|
||||
return spl.createWrappedNativeAccount(
|
||||
program.provider.connection,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
payerKeypair.publicKey,
|
||||
payerKeypair,
|
||||
amount
|
||||
payerKeypair.publicKey,
|
||||
amount,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -84,7 +86,7 @@ export class SwitchboardTestContext implements ISwitchboardTestContext {
|
|||
`Failed to load the SBV2 queue for the given cluster, ${error.message}`
|
||||
);
|
||||
}
|
||||
let mint: spl.Token;
|
||||
let mint: spl.Mint;
|
||||
try {
|
||||
mint = await queue.loadMint();
|
||||
} catch (error: any) {
|
||||
|
@ -95,7 +97,17 @@ export class SwitchboardTestContext implements ISwitchboardTestContext {
|
|||
let payerTokenWallet: PublicKey;
|
||||
try {
|
||||
payerTokenWallet = (
|
||||
await mint.getOrCreateAssociatedAccountInfo(payerKeypair.publicKey)
|
||||
await spl.getOrCreateAssociatedTokenAccount(
|
||||
provider.connection,
|
||||
payerKeypair,
|
||||
mint.address,
|
||||
payerKeypair.publicKey,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
)
|
||||
).address;
|
||||
} catch (error: any) {
|
||||
throw new Error(
|
||||
|
|
|
@ -328,11 +328,19 @@ secrets:
|
|||
programState = await switchboardProgramState.loadData();
|
||||
}
|
||||
|
||||
const switchboardMint = await switchboardProgramState.getTokenMint();
|
||||
const mint = await switchboardProgramState.getTokenMint();
|
||||
|
||||
const payerSwitchboardWallet = (
|
||||
await switchboardMint.getOrCreateAssociatedAccountInfo(
|
||||
payerKeypair.publicKey
|
||||
await spl.getOrCreateAssociatedTokenAccount(
|
||||
connection,
|
||||
payerKeypair,
|
||||
mint.address,
|
||||
payerKeypair.publicKey,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
)
|
||||
).address;
|
||||
|
||||
|
@ -393,7 +401,7 @@ secrets:
|
|||
idlAddress,
|
||||
programState: switchboardProgramState.publicKey,
|
||||
switchboardVault: programState.tokenVault,
|
||||
switchboardMint: switchboardMint.publicKey,
|
||||
switchboardMint: mint.address,
|
||||
tokenWallet: payerSwitchboardWallet,
|
||||
queue: queueAccount.publicKey,
|
||||
queueAuthority: queue.authority,
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"include": ["./src/**/*"],
|
||||
"files": ["./src/index.ts"],
|
||||
"compilerOptions": {
|
||||
"target": "es2019",
|
||||
"sourceMap": true,
|
||||
|
@ -22,7 +23,11 @@
|
|||
"noImplicitReturns": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../ts"]
|
||||
"@switchboard-xyz/switchboard-v2": ["../ts"],
|
||||
"@solana/spl-token": [
|
||||
"../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
||||
},
|
||||
"references": [{ "path": "../ts" }]
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
"module": "es2022",
|
||||
"target": "es2019",
|
||||
"outDir": "lib/esm/",
|
||||
"rootDir": "./src"
|
||||
"paths": {
|
||||
"@solana/spl-token": [
|
||||
"../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
||||
/* eslint-disable @typescript-eslint/no-non-null-asserted-optional-chain */
|
||||
import * as anchor from "@project-serum/anchor";
|
||||
import * as spl from "@solana/spl-token";
|
||||
|
@ -402,7 +403,7 @@ export class ProgramStateAccount {
|
|||
let vault = null;
|
||||
if (params.mint === undefined) {
|
||||
const decimals = 9;
|
||||
const mint = await spl.createMint(
|
||||
mint = await spl.createMint(
|
||||
program.provider.connection,
|
||||
payerKeypair,
|
||||
payerKeypair.publicKey,
|
||||
|
@ -1984,6 +1985,7 @@ export class PermissionAccount {
|
|||
);
|
||||
const psData = await programStateAccount.loadData();
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||
const [addinState, _] = await PublicKey.findProgramAddress(
|
||||
[Buffer.from("state")],
|
||||
params.addinProgram.programId
|
||||
|
@ -4107,16 +4109,16 @@ export async function sendAll(
|
|||
let txs = reqs.map((r: any) => {
|
||||
if (r === null || r === undefined) return new Transaction();
|
||||
const tx = r.tx;
|
||||
let signers = r.signers;
|
||||
let rSigners = r.signers;
|
||||
|
||||
if (signers === undefined) {
|
||||
signers = [];
|
||||
if (rSigners === undefined) {
|
||||
rSigners = [];
|
||||
}
|
||||
|
||||
tx.feePayer = (provider as anchor.AnchorProvider).wallet.publicKey;
|
||||
tx.recentBlockhash = blockhash.blockhash;
|
||||
|
||||
signers
|
||||
rSigners
|
||||
.filter((s: any): s is Signer => s !== undefined)
|
||||
.forEach((kp: any) => {
|
||||
tx.partialSign(kp);
|
||||
|
@ -4172,11 +4174,11 @@ export function packInstructions(
|
|||
currentTransaction.feePayer = feePayer;
|
||||
|
||||
const encodeLength = (bytes: Array<number>, len: number) => {
|
||||
let rem_len = len;
|
||||
let remLen = len;
|
||||
for (;;) {
|
||||
let elem = rem_len & 0x7f;
|
||||
rem_len >>= 7;
|
||||
if (rem_len == 0) {
|
||||
let elem = remLen & 0x7f;
|
||||
remLen >>= 7;
|
||||
if (remLen == 0) {
|
||||
bytes.push(elem);
|
||||
break;
|
||||
} else {
|
||||
|
@ -4205,7 +4207,7 @@ export function packInstructions(
|
|||
) {
|
||||
// If the aggregator transaction fits, it will serialize without error. We can then push it ahead no problem
|
||||
const trimmedInstructions = ixs
|
||||
.map(() => currentTransaction.instructions.pop()!)
|
||||
.map(() => currentTransaction.instructions.pop())
|
||||
.reverse();
|
||||
|
||||
// Every serialize adds the instruction signatures as dependencies
|
||||
|
@ -4277,8 +4279,8 @@ export function signTransactions(
|
|||
// Get pubkeys of signers needed
|
||||
const sigsNeeded = transaction.instructions
|
||||
.map((instruction) => {
|
||||
const signers = instruction.keys.filter((meta) => meta.isSigner);
|
||||
return signers.map((signer) => signer.pubkey);
|
||||
const ixnSigners = instruction.keys.filter((meta) => meta.isSigner);
|
||||
return ixnSigners.map((signer) => signer.pubkey);
|
||||
})
|
||||
.flat();
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"website"
|
||||
],
|
||||
"scripts": {
|
||||
"watch": "yarn workspace website start & yarn workspaces run watch",
|
||||
"watch": "yarn workspaces run watch",
|
||||
"build": "yarn workspaces run build",
|
||||
"build:ts": "yarn workspace @switchboard-xyz/switchboard-v2 build",
|
||||
"build:cli": "yarn workspace @switchboard-xyz/switchboardv2-cli build",
|
||||
|
@ -35,7 +35,7 @@
|
|||
"docs:deploy": "yarn workspace website deploy",
|
||||
"gen:idl": "rawrtools gen:anchor SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f -o website/idl -p /idl",
|
||||
"gen:idl:devnet": "rawrtools gen:anchor --devnet 2TfB33aLaneQb5TNVwyDz3jSZXS6jdW2ARw1Dgf84XCG -o website/idl -p /idl",
|
||||
"nuke": "shx rm -rf {./programs/*,./packages/*,./website,./libraries/*,.}/{node_modules,yarn*.log,build,dist,lib,.anchor,target,Cargo.lock,.docusaurus}"
|
||||
"nuke": "shx rm -rf {./programs/*,./packages/*,./website,./libraries/*,.}/{node_modules,yarn*.log,build,dist,lib,.anchor,Cargo.lock,.docusaurus}"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gallynaut/rawrtools": "^0.0.1",
|
||||
|
@ -45,9 +45,9 @@
|
|||
"npm-run-all": "^4.1.5",
|
||||
"shelljs": "^0.8.5",
|
||||
"shx": "^0.3.4",
|
||||
"ts-node": "^10.7.0",
|
||||
"ts-node": "^10.8.0",
|
||||
"typedoc": "^0.22.15",
|
||||
"typescript": "^4.6.3"
|
||||
"typescript": "^4.7.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16",
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"dependencies": {
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/web3.js": "^1.33.0",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.112",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114",
|
||||
"big.js": "^6.1.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/spl-token": "^0.2.0",
|
||||
"@solana/web3.js": "^1.37.1",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.112",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114",
|
||||
"chalk": "^4.1.2",
|
||||
"dotenv": "^16.0.0",
|
||||
"readline-sync": "^1.4.10"
|
||||
|
|
|
@ -71,11 +71,11 @@ async function main() {
|
|||
// Program State Account and token mint for payout rewards
|
||||
const [programStateAccount] = ProgramStateAccount.fromSeed(program);
|
||||
console.log(toAccountString("Program State", programStateAccount.publicKey));
|
||||
const switchTokenMint = await programStateAccount.getTokenMint();
|
||||
const mint = await programStateAccount.getTokenMint();
|
||||
const tokenAccount = await spl.createAccount(
|
||||
program.provider.connection,
|
||||
programWallet(program),
|
||||
switchTokenMint.address,
|
||||
mint.address,
|
||||
authority.publicKey,
|
||||
Keypair.generate()
|
||||
);
|
||||
|
@ -225,7 +225,7 @@ async function main() {
|
|||
nonce: 0,
|
||||
crank,
|
||||
queue,
|
||||
tokenMint: switchTokenMint.address,
|
||||
tokenMint: mint.address,
|
||||
});
|
||||
console.log(chalk.green("\u2714 Crank turned"));
|
||||
return 0;
|
||||
|
|
|
@ -4,7 +4,11 @@
|
|||
"outDir": "dist",
|
||||
"rootDir": "src",
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"]
|
||||
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"],
|
||||
"@solana/spl-token": [
|
||||
"../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/web3.js": "1.33.0",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.19",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.112",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114",
|
||||
"dotenv": "^16.0.0",
|
||||
"node-pagerduty": "^1.3.6"
|
||||
},
|
||||
|
|
|
@ -20,7 +20,11 @@
|
|||
"strict": false,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"],
|
||||
"@switchboard-xyz/sbv2-utils": ["../../libraries/sbv2-utils"]
|
||||
"@switchboard-xyz/sbv2-utils": ["../../libraries/sbv2-utils"],
|
||||
"@solana/spl-token": [
|
||||
"../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
|
|
|
@ -2,7 +2,7 @@ import { PublicKey } from "@solana/web3.js"
|
|||
|
||||
// Program ID passed with the cli --program-id flag when running the code generator. Do not edit, it will get overwritten.
|
||||
export const PROGRAM_ID_CLI = new PublicKey(
|
||||
"7Th37Bvb7u2sS4Xe6YkvCkHSHDAakRUeobRBNXuf2PFD"
|
||||
"FnsPs665aBSwJRu2A8wGv6ZT76ipR41kHm4hoA3B1QGh"
|
||||
)
|
||||
|
||||
// This constant will not get overwritten on subsequent code generations and it's safe to modify it's value.
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
"dependencies": {
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/web3.js": "^1.42.0",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.22",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.112"
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.25",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chai": "^4.3.0",
|
||||
|
|
|
@ -3,7 +3,7 @@ use anchor_lang::prelude::*;
|
|||
use std::convert::TryInto;
|
||||
pub use switchboard_v2::AggregatorAccountData;
|
||||
|
||||
declare_id!("7Th37Bvb7u2sS4Xe6YkvCkHSHDAakRUeobRBNXuf2PFD");
|
||||
declare_id!("FnsPs665aBSwJRu2A8wGv6ZT76ipR41kHm4hoA3B1QGh");
|
||||
|
||||
#[derive(Accounts)]
|
||||
pub struct ReadResult<'info> {
|
||||
|
|
|
@ -3,14 +3,17 @@
|
|||
"compilerOptions": {
|
||||
"types": ["mocha", "chai"],
|
||||
"typeRoots": ["./node_modules/@types"],
|
||||
"lib": ["es2015"],
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"module": "CommonJS",
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"tests/**/*",
|
||||
"client/**/*",
|
||||
"../../target/types/anchor_feed_parser"
|
||||
],
|
||||
"references": [{ "path": "../../libraries/ts" }]
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ import { PublicKey } from "@solana/web3.js"
|
|||
|
||||
// Program ID passed with the cli --program-id flag when running the code generator. Do not edit, it will get overwritten.
|
||||
export const PROGRAM_ID_CLI = new PublicKey(
|
||||
"GCam9zJ6soszC4K69Gy84krGdeALxwS2noeBwqLmP6JH"
|
||||
"HjjRFjCyQH3ne6Gg8Yn3TQafrrYecRrphwLwnh2A26vM"
|
||||
)
|
||||
|
||||
// This constant will not get overwritten on subsequent code generations and it's safe to modify it's value.
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
version: "3.3"
|
||||
services:
|
||||
switchboard:
|
||||
build:
|
||||
context: ../../../switchboard-oracle-v2
|
||||
network_mode: host
|
||||
restart: always
|
||||
secrets:
|
||||
- PAYER_SECRETS
|
||||
environment:
|
||||
- VERBOSE=1
|
||||
- LIVE=1
|
||||
- CLUSTER=localnet
|
||||
- HEARTBEAT_INTERVAL=15 # Seconds
|
||||
- ORACLE_KEY=DFJ2DyRCb7BfsMKnVag8qS4YFC6LvtGPCJzRJAYg3h2c
|
||||
# - RPC_URL=${RPC_URL?err}
|
||||
secrets:
|
||||
PAYER_SECRETS:
|
||||
file: secrets/payer-keypair.json
|
|
@ -13,10 +13,10 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/spl-token": "^0.1.8",
|
||||
"@solana/spl-token": "^0.2.0",
|
||||
"@solana/web3.js": "^1.42.0",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.22",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.112",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.25",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114",
|
||||
"chalk": "^4.1.2",
|
||||
"child_process": "^1.0.2",
|
||||
"dotenv": "^16.0.0"
|
||||
|
|
|
@ -4,7 +4,7 @@ pub use actions::*;
|
|||
pub use anchor_lang::prelude::*;
|
||||
use anchor_spl::token::TokenAccount;
|
||||
|
||||
declare_id!("GCam9zJ6soszC4K69Gy84krGdeALxwS2noeBwqLmP6JH");
|
||||
declare_id!("HjjRFjCyQH3ne6Gg8Yn3TQafrrYecRrphwLwnh2A26vM");
|
||||
|
||||
const MAX_RESULT: u64 = u64::MAX;
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import * as anchor from "@project-serum/anchor";
|
||||
import type NodeWallet from "@project-serum/anchor/dist/cjs/nodewallet";
|
||||
import * as spl from "@solana/spl-token";
|
||||
import {
|
||||
AccountInfo,
|
||||
Context,
|
||||
Keypair,
|
||||
PublicKey,
|
||||
SystemProgram,
|
||||
SYSVAR_RECENT_BLOCKHASHES_PUBKEY,
|
||||
|
@ -13,17 +13,18 @@ import {
|
|||
SwitchboardTestContext,
|
||||
} from "@switchboard-xyz/sbv2-utils";
|
||||
import {
|
||||
AnchorWallet,
|
||||
Callback,
|
||||
PermissionAccount,
|
||||
ProgramStateAccount,
|
||||
SwitchboardPermission,
|
||||
VrfAccount,
|
||||
} from "@switchboard-xyz/switchboard-v2";
|
||||
import chai from "chai";
|
||||
import fs from "fs";
|
||||
import "mocha";
|
||||
import type { AnchorVrfParser } from "../../../target/types/anchor_vrf_parser";
|
||||
|
||||
const expect = chai.expect;
|
||||
import path from "path";
|
||||
import { IDL } from "../../../target/types/anchor_vrf_parser";
|
||||
// const expect = chai.expect;
|
||||
|
||||
interface VrfClientState {
|
||||
bump: number;
|
||||
|
@ -35,13 +36,38 @@ interface VrfClientState {
|
|||
vrf: PublicKey;
|
||||
}
|
||||
|
||||
describe("anchor-vrf-parser test", async () => {
|
||||
anchor.setProvider(anchor.AnchorProvider.env());
|
||||
function getProgramId(): PublicKey {
|
||||
const programKeypairPath = path.join(
|
||||
__dirname,
|
||||
"..",
|
||||
"..",
|
||||
"..",
|
||||
"target",
|
||||
"deploy",
|
||||
"anchor_vrf_parser-keypair.json"
|
||||
);
|
||||
const PROGRAM_ID = Keypair.fromSecretKey(
|
||||
new Uint8Array(JSON.parse(fs.readFileSync(programKeypairPath, "utf8")))
|
||||
).publicKey;
|
||||
|
||||
const vrfClientProgram = anchor.workspace
|
||||
.AnchorVrfParser as anchor.Program<AnchorVrfParser>;
|
||||
const provider = vrfClientProgram.provider as anchor.AnchorProvider;
|
||||
const payer = (provider.wallet as NodeWallet).payer;
|
||||
return PROGRAM_ID;
|
||||
}
|
||||
|
||||
describe("anchor-vrf-parser test", () => {
|
||||
const provider = anchor.AnchorProvider.env();
|
||||
anchor.setProvider(provider);
|
||||
|
||||
// const vrfClientProgram = anchor.workspace
|
||||
// .AnchorVrfParser as Program<AnchorVrfParser>;
|
||||
const vrfClientProgram = new anchor.Program(
|
||||
IDL,
|
||||
getProgramId(),
|
||||
provider,
|
||||
new anchor.BorshCoder(IDL)
|
||||
);
|
||||
// as anchor.Program<AnchorVrfParser>;
|
||||
|
||||
const payer = (provider.wallet as AnchorWallet).payer;
|
||||
|
||||
let switchboard: SwitchboardTestContext;
|
||||
|
||||
|
@ -133,20 +159,18 @@ describe("anchor-vrf-parser test", async () => {
|
|||
}
|
||||
|
||||
// Create VRF Client account
|
||||
await vrfClientProgram.rpc.initState(
|
||||
{
|
||||
await vrfClientProgram.methods
|
||||
.initState({
|
||||
maxResult: new anchor.BN(1),
|
||||
},
|
||||
{
|
||||
accounts: {
|
||||
state: vrfClientKey,
|
||||
vrf: vrfAccount.publicKey,
|
||||
payer: payer.publicKey,
|
||||
authority: payer.publicKey,
|
||||
systemProgram: SystemProgram.programId,
|
||||
},
|
||||
}
|
||||
);
|
||||
})
|
||||
.accounts({
|
||||
state: vrfClientKey,
|
||||
vrf: vrfAccount.publicKey,
|
||||
payer: payer.publicKey,
|
||||
authority: payer.publicKey,
|
||||
systemProgram: SystemProgram.programId,
|
||||
})
|
||||
.rpc();
|
||||
console.log(`Created VrfClient Account: ${vrfClientKey}`);
|
||||
|
||||
// Get required switchboard accounts
|
||||
|
@ -158,17 +182,25 @@ describe("anchor-vrf-parser test", async () => {
|
|||
queue.publicKey,
|
||||
vrfAccount.publicKey
|
||||
);
|
||||
const switchboardMint = await programStateAccount.getTokenMint();
|
||||
const payerTokenAccount =
|
||||
await switchboardMint.getOrCreateAssociatedAccountInfo(payer.publicKey);
|
||||
const mint = await programStateAccount.getTokenMint();
|
||||
const payerTokenAccount = await spl.getOrCreateAssociatedTokenAccount(
|
||||
provider.connection,
|
||||
payer,
|
||||
mint.address,
|
||||
payer.publicKey,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
spl.TOKEN_PROGRAM_ID,
|
||||
spl.ASSOCIATED_TOKEN_PROGRAM_ID
|
||||
);
|
||||
|
||||
// Request randomness
|
||||
console.log(`Sending RequestRandomness instruction`);
|
||||
const requestTxn = await vrfClientProgram.methods
|
||||
.requestResult({
|
||||
switchboardStateBump: programStateBump,
|
||||
permissionBump,
|
||||
})
|
||||
const requestTxn = await vrfClientProgram.methods.requestResult!({
|
||||
switchboardStateBump: programStateBump,
|
||||
permissionBump,
|
||||
})
|
||||
.accounts({
|
||||
state: vrfClientKey,
|
||||
authority: payer.publicKey,
|
||||
|
|
|
@ -1,26 +1,26 @@
|
|||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"ts-node": {
|
||||
"compilerOptions": {
|
||||
"module": "CommonJS"
|
||||
}
|
||||
},
|
||||
"compilerOptions": {
|
||||
"types": ["mocha", "chai", "node"],
|
||||
"types": ["mocha", "chai"],
|
||||
"typeRoots": ["./node_modules/@types"],
|
||||
"lib": ["es2015"],
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"esModuleInterop": true,
|
||||
"importsNotUsedAsValues": "remove",
|
||||
"module": "CommonJS",
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"strict": false,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"],
|
||||
"@switchboard-xyz/sbv2-utils": ["../../libraries/sbv2-utils"]
|
||||
"@switchboard-xyz/sbv2-utils": ["../../libraries/sbv2-utils"],
|
||||
"@solana/spl-token": [
|
||||
"../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
||||
},
|
||||
// "include": ["client/**/*"],
|
||||
"exclude": ["target", "lib"],
|
||||
"include": [
|
||||
"tests/**/*",
|
||||
"client/**/*",
|
||||
"../../../target/types/anchor_vrf_parser"
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../libraries/ts" },
|
||||
{ "path": "../../libraries/sbv2-utils" }
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
"dependencies": {
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/web3.js": "^1.42.0",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.22",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.112"
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.25",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.114"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chai": "^4.3.0",
|
||||
|
|
140
tsconfig.json
140
tsconfig.json
|
@ -1,120 +1,30 @@
|
|||
{
|
||||
"ts-node": {
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "ES2019",
|
||||
"rootDir": "./",
|
||||
"strict": false,
|
||||
"skipLibCheck": true,
|
||||
"noImplicitReturns": false
|
||||
}
|
||||
},
|
||||
"exclude": ["node_modules"],
|
||||
"compilerOptions": {
|
||||
/* Visit https://aka.ms/tsconfig.json to read more about this file */
|
||||
|
||||
/* Projects */
|
||||
// "incremental": true, /* Enable incremental compilation */
|
||||
// "composite": true /* Enable constraints that allow a TypeScript project to be used with project references. */,
|
||||
// "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */
|
||||
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */
|
||||
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
||||
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
||||
|
||||
/* Language and Environment */
|
||||
"target": "ES2019" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
|
||||
"lib": [
|
||||
"es2019",
|
||||
"dom"
|
||||
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
|
||||
// "jsx": "react-jsx" /* Specify what JSX code is generated. */,
|
||||
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
|
||||
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
||||
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */
|
||||
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
||||
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */
|
||||
// "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */
|
||||
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
||||
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
||||
|
||||
/* Modules */
|
||||
"module": "ES2020" /* Specify what module code is generated. */,
|
||||
// "rootDir": "./", /* Specify the root folder within your source files. */
|
||||
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
|
||||
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
||||
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
||||
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
||||
// "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */
|
||||
"types": [
|
||||
"node",
|
||||
"mocha",
|
||||
"chai",
|
||||
"long"
|
||||
] /* Specify type package names to be included without being referenced in a source file. */,
|
||||
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
||||
"resolveJsonModule": true /* Enable importing .json files */,
|
||||
// "noResolve": true, /* Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project. */
|
||||
|
||||
/* JavaScript Support */
|
||||
"allowJs": false /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */,
|
||||
"checkJs": false /* Enable error reporting in type-checked JavaScript files. */,
|
||||
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
|
||||
|
||||
/* Emit */
|
||||
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
|
||||
"declarationMap": true /* Create sourcemaps for d.ts files. */,
|
||||
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
||||
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
|
||||
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */
|
||||
// "outDir": "./", /* Specify an output folder for all emitted files. */
|
||||
// "removeComments": true, /* Disable emitting comments. */
|
||||
"noEmit": true /* Disable emitting files from a compilation. */,
|
||||
"importHelpers": true /* Allow importing helper functions from tslib once per project, instead of including them per-file. */,
|
||||
"importsNotUsedAsValues": "error" /* Specify emit/checking behavior for imports that are only used for types */,
|
||||
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
||||
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
||||
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
||||
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
||||
"inlineSources": true /* Include source code in the sourcemaps inside the emitted JavaScript. */,
|
||||
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
||||
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
||||
// "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */
|
||||
// "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */
|
||||
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
||||
// "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */
|
||||
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
||||
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
||||
|
||||
/* Interop Constraints */
|
||||
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
||||
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
||||
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
|
||||
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
||||
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
||||
|
||||
/* Type Checking */
|
||||
"strict": true /* Enable all strict type-checking options. */,
|
||||
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
|
||||
// "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */
|
||||
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
||||
// "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */
|
||||
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
||||
// "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */
|
||||
// "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */
|
||||
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
||||
// "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */
|
||||
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */
|
||||
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
||||
"noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */,
|
||||
"noFallthroughCasesInSwitch": true /* Enable error reporting for fallthrough cases in switch statements. */,
|
||||
"noUncheckedIndexedAccess": true /* Include 'undefined' in index signature results */,
|
||||
// "noImplicitOverride": true /* Ensure overriding members in derived classes are marked with an override modifier. */,
|
||||
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */
|
||||
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
||||
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
||||
|
||||
/* Completeness */
|
||||
// "skipDefaultLibCheck": true /* Skip type checking .d.ts files that are included with TypeScript. */
|
||||
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
||||
"target": "ES2019",
|
||||
"lib": ["es2019", "dom"],
|
||||
"module": "es2022",
|
||||
"moduleResolution": "node",
|
||||
"types": ["node", "mocha", "chai", "long"],
|
||||
"resolveJsonModule": true,
|
||||
"allowJs": false,
|
||||
"checkJs": false,
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"sourceMap": true,
|
||||
"noEmit": true,
|
||||
"importHelpers": true,
|
||||
"importsNotUsedAsValues": "error",
|
||||
"inlineSources": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"strict": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"skipLibCheck": true,
|
||||
"paths": {
|
||||
"@solana/spl-token": ["./node_modules/@solana/spl-token"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,101 +15,439 @@ import Link from "@docusaurus/Link";
|
|||
|
||||
## Mainnet-Beta
|
||||
|
||||
Below is a list of public keys used in the Switchboard V2 mainnet deployment.
|
||||
### Permissionless Queue
|
||||
|
||||
The permissionless queue does not require aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using a queue's resources.
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Account</th>
|
||||
<th>Public Key</th>
|
||||
<th colspan="2">Public Keys</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program ID</b>
|
||||
<b>Oracle Queue</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f" />
|
||||
<PublicKeyButton publicKey="5JYwqvKkqp35w8Nq3ba4z1WYUeJQ1rB36V8XvaGp6zn1" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Permissionless Queue</b>
|
||||
<b>Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="31Sof5r1xi7dfcaz4x9Kuwm8J9ueAdDduMcme59sP8gc" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="So11111111111111111111111111111111111111112" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Oracle Buffer</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="FozqXFMS1nQKfPqwVdChr7RJ3y7ccSux39zU682kNYjJ" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Crank #1</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Queue</b>
|
||||
<br />
|
||||
<PublicKeyButton publicKey="5JYwqvKkqp35w8Nq3ba4z1WYUeJQ1rB36V8XvaGp6zn1" />
|
||||
<br />
|
||||
<b>Crank</b>
|
||||
<br />
|
||||
<PublicKeyButton publicKey="BKtF8yyQsj3Ft6jb2nkfpEKzARZVdGgdEPs6mFmZNmbA" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div className="centeredText">
|
||||
<b>Mainnet Permissionless Queue Settings</b>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table className="table_no_border">
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedFeedsEnabled</b>
|
||||
</td>
|
||||
<td>True</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedVrfEnabled</b>
|
||||
</td>
|
||||
<td>True</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>enableBufferRelayers</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>slashingEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>reward</b>
|
||||
</td>
|
||||
<td>12500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>minStake</b>
|
||||
</td>
|
||||
<td>0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>oracleTimeout</b>
|
||||
</td>
|
||||
<td>180</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
### Permissioned Queue
|
||||
|
||||
The permissioned queue requires aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using the queue's resources.
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">Public Keys</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Permissioned Queue</b>
|
||||
<b>Oracle Queue</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Queue</b>
|
||||
<br />
|
||||
<PublicKeyButton publicKey="3HBb2DQqDfuMdzWxNk1Eo9RTMkFYmuEAd32RiLKn9pAn" />
|
||||
<br />
|
||||
<b>Crank</b>
|
||||
<br />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="31Sof5r1xi7dfcaz4x9Kuwm8J9ueAdDduMcme59sP8gc" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="So11111111111111111111111111111111111111112" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Oracle Buffer</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="FZ3CAm8o5zf18Ua23jhrZJRYCMtGhFxFrTux8N5yrf2T" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Crank #1</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="GdNVLWzcE6h9SPuSbmu69YzxAj8enim9t6mjzuqTXgLd" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div className="centeredText">
|
||||
<b>Mainnet Permissioned Queue Settings</b>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table className="table_no_border">
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedFeedsEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedVrfEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>enableBufferRelayers</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>slashingEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>reward</b>
|
||||
</td>
|
||||
<td>12500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>minStake</b>
|
||||
</td>
|
||||
<td>0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>oracleTimeout</b>
|
||||
</td>
|
||||
<td>180</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## Devnet
|
||||
|
||||
Below is a list of public keys used in the Switchboard V2 devnet deployment.
|
||||
### Permissionless Queue
|
||||
|
||||
The permissionless queue does not require aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using a queue's resources.
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Account</th>
|
||||
<th>Public Key</th>
|
||||
<th colspan="2">Public Keys</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program ID</b>
|
||||
<b>Oracle Queue</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="2TfB33aLaneQb5TNVwyDz3jSZXS6jdW2ARw1Dgf84XCG" />
|
||||
<PublicKeyButton publicKey="F8ce7MsckeZAbAGmxjJNetxYXQa9mKr9nnrC3qKubyYy" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Permissionless Queue</b>
|
||||
<b>Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="2KgowxogBrGqRcgXQEmqFvC3PGtCu66qERNJevYW8Ajh" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="So11111111111111111111111111111111111111112" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Oracle Buffer</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="7yJ3sSifpmUFB5BcXy6yMDje15xw2CovJjfXfBKsCfT5" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Crank #1</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Queue</b>
|
||||
<br />
|
||||
<PublicKeyButton publicKey="F8ce7MsckeZAbAGmxjJNetxYXQa9mKr9nnrC3qKubyYy" />
|
||||
<br />
|
||||
<b>Crank</b>
|
||||
<br />
|
||||
<PublicKeyButton publicKey="GN9jjCy2THzZxhYqZETmPM3my8vg4R5JyNkgULddUMa5" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Permissioned Queue</b>
|
||||
<td colspan="2">
|
||||
<div className="centeredText">
|
||||
<b>Devnet Permissionless Queue Settings</b>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<b>Queue</b>
|
||||
<br />
|
||||
<PublicKeyButton publicKey="GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U" />
|
||||
<br />
|
||||
<b>Crank</b>
|
||||
<br />
|
||||
<PublicKeyButton publicKey="GdNVLWzcE6h9SPuSbmu69YzxAj8enim9t6mjzuqTXgLd" />
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table className="table_no_border">
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedFeedsEnabled</b>
|
||||
</td>
|
||||
<td>True</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedVrfEnabled</b>
|
||||
</td>
|
||||
<td>True</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>enableBufferRelayers</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>slashingEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>reward</b>
|
||||
</td>
|
||||
<td>12500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>minStake</b>
|
||||
</td>
|
||||
<td>0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>oracleTimeout</b>
|
||||
</td>
|
||||
<td>180</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
### Permissioned Queue
|
||||
|
||||
The permissioned queue requires aggregators to have `PERMIT_ORACLE_QUEUE_USAGE` permissions before using the queue's resources.
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">Public Keys</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Oracle Queue</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="GhYg3R1V6DmJbwuc57qZeoYG6gUuvCotUF1zU3WCj98U" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="2KgowxogBrGqRcgXQEmqFvC3PGtCu66qERNJevYW8Ajh" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="So11111111111111111111111111111111111111112" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Oracle Buffer</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="DQXUDDcDoQ2FjzjYRi45gjdRqe1EsLwoqNhW2hf488gf" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Crank #1</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="GdNVLWzcE6h9SPuSbmu69YzxAj8enim9t6mjzuqTXgLd" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div className="centeredText">
|
||||
<b>Devnet Permissioned Queue Settings</b>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table className="table_no_border">
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedFeedsEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>unpermissionedVrfEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>enableBufferRelayers</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>slashingEnabled</b>
|
||||
</td>
|
||||
<td>False</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>reward</b>
|
||||
</td>
|
||||
<td>12500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>minStake</b>
|
||||
</td>
|
||||
<td>0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>oracleTimeout</b>
|
||||
</td>
|
||||
<td>180</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -8,6 +8,7 @@ import MarkdownImage from "/src/components/MarkdownImage";
|
|||
import { Box, Typography, Grid } from "@mui/material";
|
||||
import Link from "@docusaurus/Link";
|
||||
import ProgramStateAccountData from "/idl/accounts/SbState.md";
|
||||
import PublicKeyButton from "/src/components/PublicKeyButton";
|
||||
|
||||
# Program
|
||||
|
||||
|
@ -34,3 +35,175 @@ import ProgramStateAccountData from "/idl/accounts/SbState.md";
|
|||
</Grid>
|
||||
|
||||
<ProgramStateAccountData />
|
||||
|
||||
## Deployment
|
||||
|
||||
Below are the public keys associated with the Switchboard V2 deployment.
|
||||
|
||||
### Mainnet-Beta
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">Mainnet-Beta</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program ID</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Upgrade Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="31Sof5r1xi7dfcaz4x9Kuwm8J9ueAdDduMcme59sP8gc" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program State Account</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="CyZuD7RPDcrqCGbNvLCyqk6Py9cEZTKmNKujfPi3ynDd" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="31Sof5r1xi7dfcaz4x9Kuwm8J9ueAdDduMcme59sP8gc" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="So11111111111111111111111111111111111111112" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>DAO Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="11111111111111111111111111111111" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>tokenVault</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="J7nSEX8ADf3pVVicd6yKy2Skvg8iLePEmkLUisAAaioD" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>idlAddress</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="Fi8vncGpNKbq62gPo56G4toCehWNy77GgqGkTaAF5Lkk" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>programDataAddress</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="7nYabs9dUhvxYwdTnrWVBL9MYviKSfrEbdWCUbcnwkpF" />
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
### Devnet
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">Devnet</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program ID</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="2TfB33aLaneQb5TNVwyDz3jSZXS6jdW2ARw1Dgf84XCG" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Upgrade Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="2KgowxogBrGqRcgXQEmqFvC3PGtCu66qERNJevYW8Ajh" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program State Account</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="BYM81n8HvTJuqZU1PmTVcwZ9G8uoji7FKM6EaPkwphPt" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Program Authority</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="2KgowxogBrGqRcgXQEmqFvC3PGtCu66qERNJevYW8Ajh" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="So11111111111111111111111111111111111111112" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>DAO Mint</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="11111111111111111111111111111111" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>tokenVault</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="FVLfR6C2ckZhbSwBzZY4CX7YBcddUSge5BNeGQv5eKhy" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>idlAddress</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="CKwZcshn4XDvhaWVH9EXnk3iu19t6t5xP2Sy2pD6TRDp" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>programDataAddress</b>
|
||||
</td>
|
||||
<td>
|
||||
<PublicKeyButton publicKey="J4CArpsbrZqu1axqQ4AnrqREs3jwoyA1M5LMiQQmAzB9" />
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -34,6 +34,24 @@ td:last-child {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
/* .table_no_border table {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
} */
|
||||
|
||||
.table_no_border td,
|
||||
.table_no_border tr {
|
||||
border: none;
|
||||
border-collapse: collapse;
|
||||
padding: 0.5em 2em;
|
||||
}
|
||||
|
||||
.centeredText {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
html[data-theme="dark"] a {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
|
25
yarn.lock
25
yarn.lock
|
@ -4164,23 +4164,6 @@
|
|||
"@svgr/plugin-jsx" "^6.2.1"
|
||||
"@svgr/plugin-svgo" "^6.2.0"
|
||||
|
||||
"@switchboard-xyz/switchboard-v2@^0.0.112":
|
||||
version "0.0.112"
|
||||
resolved "https://registry.npmjs.org/@switchboard-xyz/switchboard-v2/-/switchboard-v2-0.0.112.tgz#368256496666d4e18a64c22d944d6f7a6fcf8aad"
|
||||
integrity sha512-0Qg4xqzzS0BLMvhXkrEzf2btzY6rtrGa4BEs/LSMIMXg+RgJV4WC++QNcgzuFASfBXw2juWpODOo0STOS4T3Cw==
|
||||
dependencies:
|
||||
"@project-serum/anchor" "^0.24.2"
|
||||
"@solana/spl-governance" "^0.0.34"
|
||||
assert "^2.0.0"
|
||||
big.js "^6.1.1"
|
||||
bs58 "^4.0.1"
|
||||
chan "^0.6.1"
|
||||
crypto-js "^4.0.0"
|
||||
long "^4.0.0"
|
||||
mocha "^9.1.1"
|
||||
node-fetch "^3.2.3"
|
||||
protobufjs "^6.11.3"
|
||||
|
||||
"@szmarczak/http-timer@^1.1.2":
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421"
|
||||
|
@ -16031,9 +16014,9 @@ ts-node@7.0.1:
|
|||
source-map-support "^0.5.6"
|
||||
yn "^2.0.0"
|
||||
|
||||
ts-node@^10.2.1, ts-node@^10.4.0, ts-node@^10.7.0:
|
||||
ts-node@^10.2.1, ts-node@^10.4.0, ts-node@^10.7.0, ts-node@^10.8.0:
|
||||
version "10.8.1"
|
||||
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.8.1.tgz#ea2bd3459011b52699d7e88daa55a45a1af4f066"
|
||||
resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.8.1.tgz#ea2bd3459011b52699d7e88daa55a45a1af4f066"
|
||||
integrity sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==
|
||||
dependencies:
|
||||
"@cspotcode/source-map-support" "^0.8.0"
|
||||
|
@ -16215,9 +16198,9 @@ typescript@^4.2.4, typescript@^4.6.3:
|
|||
resolved "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz"
|
||||
integrity sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==
|
||||
|
||||
typescript@^4.3.2, typescript@^4.3.5, typescript@^4.4.3, typescript@^4.7:
|
||||
typescript@^4.3.2, typescript@^4.3.5, typescript@^4.4.3, typescript@^4.7, typescript@^4.7.3:
|
||||
version "4.7.4"
|
||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
|
||||
resolved "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
|
||||
integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
|
||||
|
||||
ua-parser-js@^0.7.30:
|
||||
|
|
Loading…
Reference in New Issue