@helium/idls
Advanced tools
Comparing version 0.6.1 to 0.6.2-next.34
@@ -5,3 +5,3 @@ "use strict"; | ||
exports.IDL = { | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"name": "data_credits", | ||
@@ -8,0 +8,0 @@ "instructions": [ |
@@ -5,3 +5,3 @@ "use strict"; | ||
exports.IDL = { | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"name": "lazy_distributor", | ||
@@ -351,3 +351,3 @@ "instructions": [ | ||
"name": "owner", | ||
"isMut": false, | ||
"isMut": true, | ||
"isSigner": false, | ||
@@ -458,3 +458,3 @@ "docs": [ | ||
"name": "owner", | ||
"isMut": false, | ||
"isMut": true, | ||
"isSigner": false, | ||
@@ -501,7 +501,2 @@ "docs": [ | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "tokenProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
@@ -564,2 +559,167 @@ ], | ||
] | ||
}, | ||
{ | ||
"name": "updateCompressionDestinationV0", | ||
"accounts": [ | ||
{ | ||
"name": "recipient", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "owner", | ||
"isMut": false, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "destination", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "merkleTree", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "compressionProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "args", | ||
"type": { | ||
"defined": "UpdateCompressionDestinationArgsV0" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "updateDestinationV0", | ||
"accounts": [ | ||
{ | ||
"name": "recipient", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "owner", | ||
"isMut": false, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "destination", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "recipientMintAccount", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
], | ||
"args": [] | ||
}, | ||
{ | ||
"name": "distributeCustomDestinationV0", | ||
"accounts": [ | ||
{ | ||
"name": "common", | ||
"accounts": [ | ||
{ | ||
"name": "payer", | ||
"isMut": true, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "lazyDistributor", | ||
"isMut": false, | ||
"isSigner": false, | ||
"relations": [ | ||
"rewards_mint", | ||
"rewards_escrow" | ||
] | ||
}, | ||
{ | ||
"name": "recipient", | ||
"isMut": true, | ||
"isSigner": false, | ||
"relations": [ | ||
"lazy_distributor" | ||
] | ||
}, | ||
{ | ||
"name": "rewardsMint", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "rewardsEscrow", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "circuitBreaker", | ||
"isMut": true, | ||
"isSigner": false, | ||
"pda": { | ||
"seeds": [ | ||
{ | ||
"kind": "const", | ||
"type": "string", | ||
"value": "account_windowed_breaker" | ||
}, | ||
{ | ||
"kind": "account", | ||
"type": "publicKey", | ||
"account": "TokenAccount", | ||
"path": "rewards_escrow" | ||
} | ||
], | ||
"programId": { | ||
"kind": "account", | ||
"type": "publicKey", | ||
"path": "circuit_breaker_program" | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "owner", | ||
"isMut": true, | ||
"isSigner": false, | ||
"docs": [ | ||
"TODO: Should this be permissioned? Should the owner have to sign to receive rewards?" | ||
] | ||
}, | ||
{ | ||
"name": "destinationAccount", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "associatedTokenProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "circuitBreakerProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "systemProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "tokenProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
] | ||
} | ||
], | ||
"args": [] | ||
} | ||
@@ -642,2 +802,13 @@ ], | ||
"type": "u8" | ||
}, | ||
{ | ||
"name": "reserved", | ||
"type": "u64" | ||
}, | ||
{ | ||
"name": "destination", | ||
"docs": [ | ||
"Pubkey::Default if not being used." | ||
], | ||
"type": "publicKey" | ||
} | ||
@@ -798,2 +969,41 @@ ] | ||
{ | ||
"name": "UpdateCompressionDestinationArgsV0", | ||
"type": { | ||
"kind": "struct", | ||
"fields": [ | ||
{ | ||
"name": "dataHash", | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "creatorHash", | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "root", | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "index", | ||
"type": "u32" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "UpdateLazyDistributorArgsV0", | ||
@@ -1095,2 +1305,7 @@ "type": { | ||
"msg": "Approver signature required" | ||
}, | ||
{ | ||
"code": 6005, | ||
"name": "CustomDestination", | ||
"msg": "This recipient uses a custom destination. Use distribute_custom_destination_v0" | ||
} | ||
@@ -1097,0 +1312,0 @@ ] |
@@ -5,3 +5,3 @@ "use strict"; | ||
exports.IDL = { | ||
"version": "0.1.1", | ||
"version": "0.2.0", | ||
"name": "lazy_transactions", | ||
@@ -8,0 +8,0 @@ "instructions": [ |
@@ -5,3 +5,3 @@ "use strict"; | ||
exports.IDL = { | ||
"version": "0.1.0", | ||
"version": "0.1.2", | ||
"name": "mobile_entity_manager", | ||
@@ -792,2 +792,28 @@ "instructions": [ | ||
] | ||
}, | ||
{ | ||
"name": "updateCarrierV0", | ||
"accounts": [ | ||
{ | ||
"name": "carrier", | ||
"isMut": true, | ||
"isSigner": false, | ||
"relations": [ | ||
"update_authority" | ||
] | ||
}, | ||
{ | ||
"name": "updateAuthority", | ||
"isMut": true, | ||
"isSigner": true | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "args", | ||
"type": { | ||
"defined": "UpdateCarrierArgsV0" | ||
} | ||
} | ||
] | ||
} | ||
@@ -840,2 +866,6 @@ ], | ||
"type": "u8" | ||
}, | ||
{ | ||
"name": "hexboostAuthority", | ||
"type": "publicKey" | ||
} | ||
@@ -861,2 +891,6 @@ ] | ||
{ | ||
"name": "hexboostAuthority", | ||
"type": "publicKey" | ||
}, | ||
{ | ||
"name": "name", | ||
@@ -923,2 +957,28 @@ "type": "string" | ||
} | ||
}, | ||
{ | ||
"name": "UpdateCarrierArgsV0", | ||
"type": { | ||
"kind": "struct", | ||
"fields": [ | ||
{ | ||
"name": "updateAuthority", | ||
"type": { | ||
"option": "publicKey" | ||
} | ||
}, | ||
{ | ||
"name": "issuingAuthority", | ||
"type": { | ||
"option": "publicKey" | ||
} | ||
}, | ||
{ | ||
"name": "hexboostAuthority", | ||
"type": { | ||
"option": "publicKey" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
@@ -925,0 +985,0 @@ ], |
@@ -5,3 +5,3 @@ "use strict"; | ||
exports.IDL = { | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"name": "price_oracle", | ||
@@ -8,0 +8,0 @@ "instructions": [ |
export const IDL = { | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"name": "data_credits", | ||
@@ -4,0 +4,0 @@ "instructions": [ |
export const IDL = { | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"name": "lazy_distributor", | ||
@@ -347,3 +347,3 @@ "instructions": [ | ||
"name": "owner", | ||
"isMut": false, | ||
"isMut": true, | ||
"isSigner": false, | ||
@@ -454,3 +454,3 @@ "docs": [ | ||
"name": "owner", | ||
"isMut": false, | ||
"isMut": true, | ||
"isSigner": false, | ||
@@ -497,7 +497,2 @@ "docs": [ | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "tokenProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
@@ -560,2 +555,167 @@ ], | ||
] | ||
}, | ||
{ | ||
"name": "updateCompressionDestinationV0", | ||
"accounts": [ | ||
{ | ||
"name": "recipient", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "owner", | ||
"isMut": false, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "destination", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "merkleTree", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "compressionProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "args", | ||
"type": { | ||
"defined": "UpdateCompressionDestinationArgsV0" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "updateDestinationV0", | ||
"accounts": [ | ||
{ | ||
"name": "recipient", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "owner", | ||
"isMut": false, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "destination", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "recipientMintAccount", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
], | ||
"args": [] | ||
}, | ||
{ | ||
"name": "distributeCustomDestinationV0", | ||
"accounts": [ | ||
{ | ||
"name": "common", | ||
"accounts": [ | ||
{ | ||
"name": "payer", | ||
"isMut": true, | ||
"isSigner": true | ||
}, | ||
{ | ||
"name": "lazyDistributor", | ||
"isMut": false, | ||
"isSigner": false, | ||
"relations": [ | ||
"rewards_mint", | ||
"rewards_escrow" | ||
] | ||
}, | ||
{ | ||
"name": "recipient", | ||
"isMut": true, | ||
"isSigner": false, | ||
"relations": [ | ||
"lazy_distributor" | ||
] | ||
}, | ||
{ | ||
"name": "rewardsMint", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "rewardsEscrow", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "circuitBreaker", | ||
"isMut": true, | ||
"isSigner": false, | ||
"pda": { | ||
"seeds": [ | ||
{ | ||
"kind": "const", | ||
"type": "string", | ||
"value": "account_windowed_breaker" | ||
}, | ||
{ | ||
"kind": "account", | ||
"type": "publicKey", | ||
"account": "TokenAccount", | ||
"path": "rewards_escrow" | ||
} | ||
], | ||
"programId": { | ||
"kind": "account", | ||
"type": "publicKey", | ||
"path": "circuit_breaker_program" | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "owner", | ||
"isMut": true, | ||
"isSigner": false, | ||
"docs": [ | ||
"TODO: Should this be permissioned? Should the owner have to sign to receive rewards?" | ||
] | ||
}, | ||
{ | ||
"name": "destinationAccount", | ||
"isMut": true, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "associatedTokenProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "circuitBreakerProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "systemProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
}, | ||
{ | ||
"name": "tokenProgram", | ||
"isMut": false, | ||
"isSigner": false | ||
} | ||
] | ||
} | ||
], | ||
"args": [] | ||
} | ||
@@ -638,2 +798,13 @@ ], | ||
"type": "u8" | ||
}, | ||
{ | ||
"name": "reserved", | ||
"type": "u64" | ||
}, | ||
{ | ||
"name": "destination", | ||
"docs": [ | ||
"Pubkey::Default if not being used." | ||
], | ||
"type": "publicKey" | ||
} | ||
@@ -794,2 +965,41 @@ ] | ||
{ | ||
"name": "UpdateCompressionDestinationArgsV0", | ||
"type": { | ||
"kind": "struct", | ||
"fields": [ | ||
{ | ||
"name": "dataHash", | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "creatorHash", | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "root", | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "index", | ||
"type": "u32" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "UpdateLazyDistributorArgsV0", | ||
@@ -1091,2 +1301,7 @@ "type": { | ||
"msg": "Approver signature required" | ||
}, | ||
{ | ||
"code": 6005, | ||
"name": "CustomDestination", | ||
"msg": "This recipient uses a custom destination. Use distribute_custom_destination_v0" | ||
} | ||
@@ -1093,0 +1308,0 @@ ] |
export const IDL = { | ||
"version": "0.1.1", | ||
"version": "0.2.0", | ||
"name": "lazy_transactions", | ||
@@ -4,0 +4,0 @@ "instructions": [ |
export const IDL = { | ||
"version": "0.1.0", | ||
"version": "0.1.2", | ||
"name": "mobile_entity_manager", | ||
@@ -788,2 +788,28 @@ "instructions": [ | ||
] | ||
}, | ||
{ | ||
"name": "updateCarrierV0", | ||
"accounts": [ | ||
{ | ||
"name": "carrier", | ||
"isMut": true, | ||
"isSigner": false, | ||
"relations": [ | ||
"update_authority" | ||
] | ||
}, | ||
{ | ||
"name": "updateAuthority", | ||
"isMut": true, | ||
"isSigner": true | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "args", | ||
"type": { | ||
"defined": "UpdateCarrierArgsV0" | ||
} | ||
} | ||
] | ||
} | ||
@@ -836,2 +862,6 @@ ], | ||
"type": "u8" | ||
}, | ||
{ | ||
"name": "hexboostAuthority", | ||
"type": "publicKey" | ||
} | ||
@@ -857,2 +887,6 @@ ] | ||
{ | ||
"name": "hexboostAuthority", | ||
"type": "publicKey" | ||
}, | ||
{ | ||
"name": "name", | ||
@@ -919,2 +953,28 @@ "type": "string" | ||
} | ||
}, | ||
{ | ||
"name": "UpdateCarrierArgsV0", | ||
"type": { | ||
"kind": "struct", | ||
"fields": [ | ||
{ | ||
"name": "updateAuthority", | ||
"type": { | ||
"option": "publicKey" | ||
} | ||
}, | ||
{ | ||
"name": "issuingAuthority", | ||
"type": { | ||
"option": "publicKey" | ||
} | ||
}, | ||
{ | ||
"name": "hexboostAuthority", | ||
"type": { | ||
"option": "publicKey" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
@@ -921,0 +981,0 @@ ], |
export const IDL = { | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"name": "price_oracle", | ||
@@ -4,0 +4,0 @@ "instructions": [ |
export type DataCredits = { | ||
"version": "0.2.0"; | ||
"version": "0.2.1"; | ||
"name": "data_credits"; | ||
@@ -4,0 +4,0 @@ "instructions": [ |
export type LazyDistributor = { | ||
"version": "0.1.0"; | ||
"version": "0.2.0"; | ||
"name": "lazy_distributor"; | ||
@@ -347,3 +347,3 @@ "instructions": [ | ||
"name": "owner"; | ||
"isMut": false; | ||
"isMut": true; | ||
"isSigner": false; | ||
@@ -454,3 +454,3 @@ "docs": [ | ||
"name": "owner"; | ||
"isMut": false; | ||
"isMut": true; | ||
"isSigner": false; | ||
@@ -497,7 +497,2 @@ "docs": [ | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "tokenProgram"; | ||
"isMut": false; | ||
"isSigner": false; | ||
} | ||
@@ -560,2 +555,167 @@ ]; | ||
]; | ||
}, | ||
{ | ||
"name": "updateCompressionDestinationV0"; | ||
"accounts": [ | ||
{ | ||
"name": "recipient"; | ||
"isMut": true; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "owner"; | ||
"isMut": false; | ||
"isSigner": true; | ||
}, | ||
{ | ||
"name": "destination"; | ||
"isMut": false; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "merkleTree"; | ||
"isMut": false; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "compressionProgram"; | ||
"isMut": false; | ||
"isSigner": false; | ||
} | ||
]; | ||
"args": [ | ||
{ | ||
"name": "args"; | ||
"type": { | ||
"defined": "UpdateCompressionDestinationArgsV0"; | ||
}; | ||
} | ||
]; | ||
}, | ||
{ | ||
"name": "updateDestinationV0"; | ||
"accounts": [ | ||
{ | ||
"name": "recipient"; | ||
"isMut": true; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "owner"; | ||
"isMut": false; | ||
"isSigner": true; | ||
}, | ||
{ | ||
"name": "destination"; | ||
"isMut": false; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "recipientMintAccount"; | ||
"isMut": false; | ||
"isSigner": false; | ||
} | ||
]; | ||
"args": []; | ||
}, | ||
{ | ||
"name": "distributeCustomDestinationV0"; | ||
"accounts": [ | ||
{ | ||
"name": "common"; | ||
"accounts": [ | ||
{ | ||
"name": "payer"; | ||
"isMut": true; | ||
"isSigner": true; | ||
}, | ||
{ | ||
"name": "lazyDistributor"; | ||
"isMut": false; | ||
"isSigner": false; | ||
"relations": [ | ||
"rewards_mint", | ||
"rewards_escrow" | ||
]; | ||
}, | ||
{ | ||
"name": "recipient"; | ||
"isMut": true; | ||
"isSigner": false; | ||
"relations": [ | ||
"lazy_distributor" | ||
]; | ||
}, | ||
{ | ||
"name": "rewardsMint"; | ||
"isMut": false; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "rewardsEscrow"; | ||
"isMut": true; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "circuitBreaker"; | ||
"isMut": true; | ||
"isSigner": false; | ||
"pda": { | ||
"seeds": [ | ||
{ | ||
"kind": "const"; | ||
"type": "string"; | ||
"value": "account_windowed_breaker"; | ||
}, | ||
{ | ||
"kind": "account"; | ||
"type": "publicKey"; | ||
"account": "TokenAccount"; | ||
"path": "rewards_escrow"; | ||
} | ||
]; | ||
"programId": { | ||
"kind": "account"; | ||
"type": "publicKey"; | ||
"path": "circuit_breaker_program"; | ||
}; | ||
}; | ||
}, | ||
{ | ||
"name": "owner"; | ||
"isMut": true; | ||
"isSigner": false; | ||
"docs": [ | ||
"TODO: Should this be permissioned? Should the owner have to sign to receive rewards?" | ||
]; | ||
}, | ||
{ | ||
"name": "destinationAccount"; | ||
"isMut": true; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "associatedTokenProgram"; | ||
"isMut": false; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "circuitBreakerProgram"; | ||
"isMut": false; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "systemProgram"; | ||
"isMut": false; | ||
"isSigner": false; | ||
}, | ||
{ | ||
"name": "tokenProgram"; | ||
"isMut": false; | ||
"isSigner": false; | ||
} | ||
]; | ||
} | ||
]; | ||
"args": []; | ||
} | ||
@@ -638,2 +798,13 @@ ]; | ||
"type": "u8"; | ||
}, | ||
{ | ||
"name": "reserved"; | ||
"type": "u64"; | ||
}, | ||
{ | ||
"name": "destination"; | ||
"docs": [ | ||
"Pubkey::Default if not being used." | ||
]; | ||
"type": "publicKey"; | ||
} | ||
@@ -794,2 +965,41 @@ ]; | ||
{ | ||
"name": "UpdateCompressionDestinationArgsV0"; | ||
"type": { | ||
"kind": "struct"; | ||
"fields": [ | ||
{ | ||
"name": "dataHash"; | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
]; | ||
}; | ||
}, | ||
{ | ||
"name": "creatorHash"; | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
]; | ||
}; | ||
}, | ||
{ | ||
"name": "root"; | ||
"type": { | ||
"array": [ | ||
"u8", | ||
32 | ||
]; | ||
}; | ||
}, | ||
{ | ||
"name": "index"; | ||
"type": "u32"; | ||
} | ||
]; | ||
}; | ||
}, | ||
{ | ||
"name": "UpdateLazyDistributorArgsV0"; | ||
@@ -1091,2 +1301,7 @@ "type": { | ||
"msg": "Approver signature required"; | ||
}, | ||
{ | ||
"code": 6005; | ||
"name": "CustomDestination"; | ||
"msg": "This recipient uses a custom destination. Use distribute_custom_destination_v0"; | ||
} | ||
@@ -1093,0 +1308,0 @@ ]; |
export type LazyTransactions = { | ||
"version": "0.1.1"; | ||
"version": "0.2.0"; | ||
"name": "lazy_transactions"; | ||
@@ -4,0 +4,0 @@ "instructions": [ |
export type MobileEntityManager = { | ||
"version": "0.1.0"; | ||
"version": "0.1.2"; | ||
"name": "mobile_entity_manager"; | ||
@@ -788,2 +788,28 @@ "instructions": [ | ||
]; | ||
}, | ||
{ | ||
"name": "updateCarrierV0"; | ||
"accounts": [ | ||
{ | ||
"name": "carrier"; | ||
"isMut": true; | ||
"isSigner": false; | ||
"relations": [ | ||
"update_authority" | ||
]; | ||
}, | ||
{ | ||
"name": "updateAuthority"; | ||
"isMut": true; | ||
"isSigner": true; | ||
} | ||
]; | ||
"args": [ | ||
{ | ||
"name": "args"; | ||
"type": { | ||
"defined": "UpdateCarrierArgsV0"; | ||
}; | ||
} | ||
]; | ||
} | ||
@@ -836,2 +862,6 @@ ]; | ||
"type": "u8"; | ||
}, | ||
{ | ||
"name": "hexboostAuthority"; | ||
"type": "publicKey"; | ||
} | ||
@@ -857,2 +887,6 @@ ]; | ||
{ | ||
"name": "hexboostAuthority"; | ||
"type": "publicKey"; | ||
}, | ||
{ | ||
"name": "name"; | ||
@@ -919,2 +953,28 @@ "type": "string"; | ||
}; | ||
}, | ||
{ | ||
"name": "UpdateCarrierArgsV0"; | ||
"type": { | ||
"kind": "struct"; | ||
"fields": [ | ||
{ | ||
"name": "updateAuthority"; | ||
"type": { | ||
"option": "publicKey"; | ||
}; | ||
}, | ||
{ | ||
"name": "issuingAuthority"; | ||
"type": { | ||
"option": "publicKey"; | ||
}; | ||
}, | ||
{ | ||
"name": "hexboostAuthority"; | ||
"type": { | ||
"option": "publicKey"; | ||
}; | ||
} | ||
]; | ||
}; | ||
} | ||
@@ -921,0 +981,0 @@ ]; |
export type PriceOracle = { | ||
"version": "0.2.0"; | ||
"version": "0.2.1"; | ||
"name": "price_oracle"; | ||
@@ -4,0 +4,0 @@ "instructions": [ |
{ | ||
"name": "@helium/idls", | ||
"version": "0.6.1", | ||
"version": "0.6.2-next.34+823cc6bd", | ||
"description": "Exported idls", | ||
@@ -30,3 +30,3 @@ "publishConfig": { | ||
"@coral-xyz/anchor": "^0.28.0", | ||
"@solana/web3.js": "^1.78.4", | ||
"@solana/web3.js": "^1.78.8", | ||
"bn.js": "^5.2.0", | ||
@@ -40,3 +40,3 @@ "borsh": "^0.7.0", | ||
}, | ||
"gitHead": "34a1a5030993715e527d04459372757e7a2c3cc8" | ||
"gitHead": "823cc6bd9fcbc5ce9707de6c252754aed80ef40e" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2305743
86
48119
1
112
+ Addedcross-fetch@3.2.0(transitive)
- Removedcross-fetch@3.1.8(transitive)
Updated@solana/web3.js@^1.78.8