|
@@ -383,7 +383,7 @@ interface ApplySystemInstruction {
|
|
world: PublicKey;
|
|
world: PublicKey;
|
|
session?: Session;
|
|
session?: Session;
|
|
extraAccounts?: web3.AccountMeta[];
|
|
extraAccounts?: web3.AccountMeta[];
|
|
- args?: object;
|
|
|
|
|
|
+ args?: any;
|
|
}
|
|
}
|
|
async function createApplySystemInstruction({
|
|
async function createApplySystemInstruction({
|
|
authority,
|
|
authority,
|
|
@@ -491,7 +491,7 @@ export async function ApplySystem({
|
|
entities: ApplySystemEntity[];
|
|
entities: ApplySystemEntity[];
|
|
world: PublicKey;
|
|
world: PublicKey;
|
|
extraAccounts?: web3.AccountMeta[];
|
|
extraAccounts?: web3.AccountMeta[];
|
|
- args?: object;
|
|
|
|
|
|
+ args?: any;
|
|
session?: Session;
|
|
session?: Session;
|
|
}): Promise<{ instruction: TransactionInstruction; transaction: Transaction }> {
|
|
}): Promise<{ instruction: TransactionInstruction; transaction: Transaction }> {
|
|
const instruction = await createApplySystemInstruction({
|
|
const instruction = await createApplySystemInstruction({
|