@@ -25,6 +25,7 @@ export interface Messengers {
2525 getAssets : ( assets : string [ ] , globalCallBackFuncName : string ) => void ;
2626 getTipAddress : ( chainId : string , globalCallBackFuncName : string ) => void ;
2727 tipSign : ( chainId : string , message : string , globalCallBackFuncName : string ) => void ;
28+ signBotSignature : ( args : [ string , boolean , string , string , string , string ] ) => void ;
2829}
2930
3031declare global {
@@ -37,7 +38,8 @@ declare global {
3738 close ?: { postMessage : Messengers [ 'close' ] } ;
3839 getAssets ?: { postMessage : ( [ params , globalCallBackFuncName ] : [ string [ ] , string ] ) => void } ;
3940 getTipAddress ?: { postMessage : ( [ chainId , globalCallBackFuncName ] : [ string , string ] ) => void } ;
40- tipSign ?: { postMessage : ( [ chainId , message , globalCallBackFuncName ] : [ string , string , string ] ) => void } ;
41+ tipSign ?: { postMessage : ( [ chainId , message , globalCallBackFuncName ] : [ string , string , string ] ) => void } ;
42+ signBotSignature ?: { postMessage : ( [ appId , reloadPublicKey , method , path , body , callbackFunctionName ] : [ string , boolean , string , string , string , string ] ) => void } ;
4143 } ;
4244 } ;
4345 MixinContext ?: {
@@ -48,6 +50,7 @@ declare global {
4850 getAssets ?: Messengers [ 'getAssets' ] ;
4951 getTipAddress ?: Messengers [ 'getTipAddress' ] ;
5052 tipSign ?: Messengers [ 'tipSign' ] ;
53+ signBotSignature : Messengers [ 'signBotSignature' ] ;
5154 } ;
5255 assetsCallbackFunction ?: ( res : string ) => void ;
5356 tipAddressCallbackFunction ?: ( address : string ) => void ;
0 commit comments